gpt4 book ai didi

c# - 如何解决子查询

转载 作者:搜寻专家 更新时间:2023-10-30 22:14:48 26 4
gpt4 key购买 nike

我有这样的数据

Sr_No/ AccessionNo  / Roll_nO   / Price
---------------------------------------
1 / 101 / 45 / 1000
2 / 102 / 46 / 2000
3 / 101 / 43 / 500

我写了这个查询

select * 
from Circulation
where MAX(sr_no) in (select *
from circulation
where accessionno = @accessionno)

我想获取文本框给出的登录号的值,它应该是 Sr_No 的最大值,并且对于信息 Sr_NO 是自动递增的。

我的查询不工作

我是一名学生,几个月前开始使用 C#

抱歉我的英语不好

我遇到了这个错误

An aggregate may not appear in the WHERE
clause unless it is in a subquery contained in a HAVING clause or a select list, and the column being aggregated is an outer reference.
Only one expression can be specified in the select list when the subquery is not introduced with EXISTS.

当我输入 101 作为入藏号时,我想要那个。所以它会返回这个信息

3   /    101       /    43    /    500

最佳答案

你可能想要这样的东西:

SELECT * 
FROM Circulation
WHERE sr_no = (SELECT MAX(sr_no)
FROM circulation
WHERE accessionno = @accessionno)

您想从 Circulation 中选择行,其中 sr_no 列等于表中所有 sr_no 值的最大值 -对吧?

关于c# - 如何解决子查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15601380/

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