gpt4 book ai didi

sql-server - 具有子查询条件的 SQL Server

转载 作者:行者123 更新时间:2023-12-03 12:44:42 30 4
gpt4 key购买 nike

我的查询看起来像这样,

SELECT field1, field2, (SELECT TOP 1 field1 from table1) as field3 
FROM table2
HAVING field3 > 0

它抛出一个错误

invalid column name field3

最佳答案

不能在 HAVINGWHERE 中使用数据项别名。

您需要在 HAVING 语句中重新调用该值。但是,使用 WHERE 子句会更适合这里:

WHERE (SELECT TOP 1 field1 from table1) > 0

关于sql-server - 具有子查询条件的 SQL Server,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9585183/

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