SQL Learning 💻
Open in Telegram
Learn SQL from Scratch! See also @C_codings, @Cpp_codings , @moreinfoaboutme
Show moreThe country is not specifiedTechnologies & Applications20 206
4 799
Subscribers
No data24 hours
+127 days
+1530 days
Posts Archive
4 799
Inserting in a table
INSERT INTO table_name (column1,column2, column3, ...)
VALUES (value1, value2, value3, ...);4 799
Putting up criteria in a table
CREATE TABLE Persons (
PersonID int,
LastName varchar(255),
FirstName varchar(255),
Address varchar(255),
City varchar(255)
);4 799
Creating a table.
CREATE TABLE table_name (
column1 datatype,
column2 datatype,
column3 datatype,
....
);