What is main difference between INSERT INTO table VALUES ..
and INSERT INTO table SET
?
Example:
INSERT INTO table (a, b, c) VALUES (1,2,3)
INSERT INTO table SET a=1, b=2, c=3
And what about performance of these two?
What is main difference between INSERT INTO table VALUES ..
and INSERT INTO table SET
?
Example:
INSERT INTO table (a, b, c) VALUES (1,2,3)
INSERT INTO table SET a=1, b=2, c=3
And what about performance of these two?