当我尝试运行这个简单的脚本时:
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
它有什么问题?