MySQL简单查询语法错误

时间:2015-06-25 22:17:24

标签: mysql sql syntax

当我尝试运行这个简单的脚本时:

INSERT INTO landlord (full_name, tel_number, email, password) VALUES
  ('landlord1', '12345', 'landlord1@email.com', 'pass1'),
  ('landlord2', '12345', 'landlord2@email.com', 'pass2'),
  ('landlord3', '12345', 'landlord3@email.com', 'pass3');

我收到了一个错误:

    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 'INSERT INTO landlord (full_name, tel_number, email, password) VALUES
  ('landlor' at line 2

它有什么问题?

0 个答案:

没有答案
相关问题