MySQL Syntax Error: 'inter' Keyword Not Recognized
The error in your SQL syntax is likely due to the word 'inter' which is not a valid keyword in MySQL. It seems like a typo or a mistake in your query.
Here's an example of a corrected query:
INSERT INTO emp VALUES (1234, '嘟嘟姐', 'jjk', 999, '2023-06-04', 789.0, 78.0, 10);
Make sure to replace the table name 'emp' with your actual table name, and provide the correct values for each column in the INSERT statement.
原文地址: https://www.cveoy.top/t/topic/o0Kh 著作权归作者所有。请勿转载和采集!