gpt4 book ai didi

mysql - SQL Server - 子查询中的多行

转载 作者:行者123 更新时间:2023-11-30 23:00:44 25 4
gpt4 key购买 nike

这个单行查询工作但是,我想减去多行

SELECT(
(SELECT num1 from table1 where T_Type=2) -
(SELECT num2 from table1 where T_Type=3))as
[SUBSTRACTION]

最佳答案

尝试

SELECT t1.num1-t2.num2 from table1 t1,table1 t2 where t1.T_Type=2 and t2.T_Type=3

关于mysql - SQL Server - 子查询中的多行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24158752/

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