insert table command

Solutions on MaxInterview for insert table command by the best coders in the world

showing results for - "insert table command"
Emanuele
14 Jun 2017
1// FOR INSERTING IN AN UNORDERED OR A SPECIFIC MANNER:
2INSERT INTO table_name (column1, column2, column3, ...)
3VALUES (value1, value2, value3, ...);
4
5// FOR INSERTING IN ORDERED MANNER AS PER THE CREATE TABLE:
6INSERT INTO table_name
7VALUES (value1, value2, value3, ...);