Computer Science, asked by tanya2679, 11 months ago

how to create a table​

Answers

Answered by ishanp240603
0

Answer:

1st select a data base

like mySQL>. use test

syntax to create a table

mySQL> create table [table name](col1 DT constraint,col2 DT constraint,.......);

I hope my answer is satisfiable

if my answer is up to your mark then mark it as brainliest answer

and follow me for more

Answered by WristySpider834
0

Answer:

The following is the syntax example for how to write the query:

CREATE TABLE <TABLE_NAME>

(

   column_name1  datatype1,

   column_name2  datatype2,

   column_name3  datatype3,

   column_name4  datatype4

);

Explanation:

syntax example is also in the attachment.

an example is in the attachment.

I HOPE IT HELPS!!

PLS MARK ME AS BRAINIEST!!

Attachments:
Similar questions