NorseMan
Member
What exactly is the differences between these two? Does it depend on when to use them or is it the same when to use? Do they do, act, and preform the same?
INSERT INTO tableName SET
column1Name = column1Value
column2Name = column2Value
INSERT INTO tableName
(column1Name, column2name)
VALUES (column1Value, column2Value)
INSERT INTO tableName SET
column1Name = column1Value
column2Name = column2Value
INSERT INTO tableName
(column1Name, column2name)
VALUES (column1Value, column2Value)