Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

insert into table sql

-- the following statement inserts values value1, value2 and value3  
-- into columns column1, column2, column3 respectively
INSERT INTO table_name (column1, column2, column3)
VALUES(value1, value2, value3);

-- the following statement inserts the values in order into
-- all the columns of the table
INSERT INTO table_name 
VALUES(value1, value2, value3);
Source by boltcode.io #
 
PREVIOUS NEXT
Tagged: #insert #table #sql
ADD COMMENT
Topic
Name
8+8 =