sqlite: ambiguous column name解决方法

sqlite: ambiguous column name解决方法,第1张

概述SQLite数据库查询中的BUG    如下语句:     select t_id,t_name,t_address,gid ,deviceName,gName     from tempHum as th,device as de,igroup as gr    where th.deviceid = de.deviceid and th.gid = gr.gid 在执行时报:ambiguous

sqlite数据库查询中的BUG

如下语句:

select t_ID,t_name,t_address,gID,devicename,gname

from tempHum as th,device as de,igroup as gr

where th.deviceid = de.deviceid and th.gID = gr.gID

在执行时报:ambiguous column name:gID,

很奇怪的是我只查询了一遍gID列,因为gID在两张表里面都有,一张里面是主键,一张里面是外键。而且在MysqL中没有出现这样的错误,很是奇怪。

以前碰到过,因为当时用的是 select * ......,又因为那一列没有用,所有就没管,今天出现类似的情况,却无法避免,经过摸索已解决

select t_ID,th.gID as gID,gname

from tempHum as th,igroup as gr

where th.deviceid = de.deviceid and th.gID = gr.gID

就是加粗的那几个代码。

问题虽不大,但终究是解决了,留个念。

总结

以上是内存溢出为你收集整理的sqlite: ambiguous column name解决方法全部内容,希望文章能够帮你解决sqlite: ambiguous column name解决方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1173413.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存