0
How to create tables in sql??
4 ответов
0
CREATE TABLE table_name
(
column_name1 data_type(size),
column_name2 data_type(size),
column_name3 data_type(size),
....
);
CREATE TABLE Persons
(
PersonID int,
LastName varchar(255),
FirstName varchar(255),
Address varchar(255),
City varchar(255)
);
0
thank you
0
Don't say like that @Rohit Kumar if the person doesn't know they have a rights to raise his doubts here... Don't hurt them by your words. If I said anything wrong I am sorry
- 1
Wrost question