gpt4 book ai didi

MySql数据库查询解决方案?

转载 作者:行者123 更新时间:2023-11-29 19:42:10 27 4
gpt4 key购买 nike

我的数据库中有 2 个表,分别为“si”和“gi”,两个表中都有数字列“regno”,我想从这两个表中获取数据。

我正在使用这个 Mysql 查询

select * 
from si
join gi on(si.regno=gi.regno)
where regno=1"

它表明 regno 不明确。

正确的查询是什么?

最佳答案

where 子句中存在错误,因为哪个 regno 列来自哪个表 ,sigi

更改您的查询

select *  from si join gi on(si.regno=gi.regno) where si.regno=1"

select *  from si join gi on(si.regno=gi.regno) where gi.regno=1"

关于MySql数据库查询解决方案?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41288393/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com