Использовать «LIMIT» в «INSERT» MySQL?

Могу ли я использовать LIMIT 2 в запросе MySQL INSERT? например.

INSERT INTO MyTable
   (user_name,password)
VALUES
   (john,366543),
   (sam,654654)
LIMIT 2

Я пытался, и это говорит

`#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`
6
задан John Smith 1 August 2012 в 21:56
поделиться