Can i use LIMIT 2 on MySQL INSERT query? e.g.
INSERT INTO MyTable
(user_name,password)
VALUES
(john,366543),
(sam,654654)
LIMIT 2
I tried and its saying
`#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'LIMIT 2' at line 1`
LIMIT
in anINSERT INTO ... SELECT FROM
call is relevant as demonstrated here. – Rodolforodolph