首页 > 解决方案 > Hibernate 和 MYSQL:您的 SQL 语法有错误?

问题描述

我的 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

这可能是什么原因造成的?我看不到我的查询有问题,我可以手动让它工作。

标签: javamysqlsqlhibernatemysql-error-1064

解决方案


您在此行中有一个额外的逗号:

 "csl.status as 'status',\r\n" +

推荐阅读