- 1
How to create a table
create table table name
4 Respuestas
+ 5
Please follow the sql tutorial of the app.
https://www.sololearn.com/Course/SQL/?ref=app
0
take a wood and then try to cut it in a table form
0
create table "TableName (
ID int,
field 1,
field 2,
field n,
.
.
)
0
create table Table name(
attribute 1(data type),
attribute2(data type),
attribute 3(data type),
attribute n(data type)
)