write the SQL command to create a database name student
Answers
Answered by
0
Explanation:
.
...
SQL CREATE TABLE
create table "tablename"
("column1" "data type",
"column2" "data type",
"column3" "data type",
...
"columnN" "data type");
Similar questions