Hibernate 和 MYSQL:您的 SQL 语法有误吗?
Hibernate and MYSQL: You have an error in your SQL syntax?
我的 java 代码中有以下查询:
String queryString = "select \r\n" +
"cms.status_id as 'statusId',\r\n" +
"cms.status_label as 'statusLabel',\r\n" +
"csl.status as 'status',\r\n" +
"from "+client+".my_status cms \r\n" +
"join "+client+".status_list csl on csl.status = cms.status_id\r\n";
当我 运行 代码时,出现以下错误:
SQL Error: 1064, SQLState: 42000
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax
这可能是什么原因造成的?我看不到我的查询有问题,我可以手动让它工作。
这一行多了一个逗号:
"csl.status as 'status',\r\n" +
我的 java 代码中有以下查询:
String queryString = "select \r\n" +
"cms.status_id as 'statusId',\r\n" +
"cms.status_label as 'statusLabel',\r\n" +
"csl.status as 'status',\r\n" +
"from "+client+".my_status cms \r\n" +
"join "+client+".status_list csl on csl.status = cms.status_id\r\n";
当我 运行 代码时,出现以下错误:
SQL Error: 1064, SQLState: 42000
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax
这可能是什么原因造成的?我看不到我的查询有问题,我可以手动让它工作。
这一行多了一个逗号:
"csl.status as 'status',\r\n" +