write a SQL Statment to Create
table
following given table
TABLE NAME CARS_WORLD
Answers
Answered by
1
Answer:
CREATE TABLE CARS_WORLD(
);
Explanation:
CREATE TABLE table_name (
column1 datatype,
column2 datatype,
column3 datatype,
....
);
This is the syntax.
Similar questions