MySQL简单查询语法错误

MySQL简单查询语法错误,mysql,sql,syntax,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', 'pa

当我尝试运行此简单脚本时:

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

有什么问题吗?

看起来很简单——我觉得没什么问题。你能发布
描述房东的输出吗
?问题可能是在第一行末尾或第二行开头看不到的隐藏字符。奇怪的是,当我试图描述房东时,我也遇到了同样的错误。这个脚本是我从IntelliJ IDEA运行的。但当我在MySQL工作台上运行它时,一切都正常。谢谢大家,我用的是SQL Server方言而不是MySQL。