Computer Science, asked by s2133226, 4 months ago

write a SQL Statment to Create
table
following given table
TABLE NAME CARS_WORLD​

Answers

Answered by srakebr
1

Answer:

CREATE TABLE CARS_WORLD(

);

Explanation:

CREATE TABLE table_name (

   column1 datatype,

   column2 datatype,

   column3 datatype,

  ....

);

This is the syntax.

Similar questions