Verwenden Sie "LIMIT" in einem MySQL "INSERT"?

Kann ich LIMIT 2 für MySQL INSERT-Abfragen verwenden? z.B.

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

Ich habe es versucht und sein Sprichwort

`#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`

Antworten auf die Frage(4)

Ihre Antwort auf die Frage