解决:Column 'id' in order clause is ambiguous 原因:多表查询,都有同样的字段; 解决:需要指定字段对应的表。比如增加表别名,别名.字段
### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Column ' xxxxxx ' in order clause is ambiguous 这条报错是在排序的时候报错的,意思是 : 列' xxxxxx ' 在排序中是模糊不清的 。 也就是说排序的时候列指定不清楚。 具体分析:我在排序的时...
错误Column 'id' in order clause is ambiguous 易出现在 p=Product.find(:all,:include=>:kind,:order=>"id desc") 类似的语句上,用include包含了一个left join对象,所以id可能存在于多个表内,就引起了二义性 修改为 p=Product.find(:all,:include=>:kind,:order=>"products.id desc") 属性前加上表...
Column 'Name' in on clause is ambiguous MySQL查询的时候出现这个错误提示多半是因为: 1.多表查询的时候几个表中同时出现了某个相同的列名,而在查询条件WHERE后面又没有指定是那个表。 2.查询结果里面有两个相同的列名,而没有指定是哪个表。 这个字段指的是哪个表的字段。必须使用全限定名称,如:tableName.lo...
多半是因为多表查询的时候几个表中同时出现了某个相同的列名,而在查询条件WHERE后面又没有指定是那个表,而引起的又或者是查询结果里面有两个相同的列名,而没有指定是哪个表,使用的时候可以这样,查询前面加表名可避免出现错误 ambiguous 1. 含糊不清的 2. 引起歧义的 ...
Column ‘XXXX‘ in order clause is ambiguous Column ‘create_time’ in order clause is ambiguous 原因是我多表查询,这个列两个表都有,需要指定一下哪个表的。那么你可能在写连表查询的时候,没有写order by,所以,orm框架自动添加了order by create_time,又因为你连接的表中,有相同的字段create_time,SQL...
你是想把user起别名叫a吧 那么user和a之间不用加逗号 select user a from 表名 这样用
MySQL- [Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggre... 新建的mysql,在查询时报异常信息,虽然有正常执行结果。 [Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'information_schema.PROFILI...
where user_id = 1。 这个语句⾥如果像上⾯这种写法就会报如题这个错误:"Column 'user_id' in where clause is ambiguous"。这时只需要给where 后⾯的user_id指定表名就可以了。 写成如下语句: select u.id,u.user_id,u.user_name,a.user_id,a.money from account a le...
使用mysql数据库进行左右连接查询的时候出现错误提示 Column 'id' in where clause is ambiguous。 这个错误in where clause is ambiguous多半是因为多表查询的时候几个表中同时出现了某个相同的列名,而在查询条件WHERE后面又没有指定是那个表,而引起的。