gpt4 book ai didi

sql - 如何通过一个查询获取数据库的总行数

转载 作者:行者123 更新时间:2023-12-03 18:38:41 25 4
gpt4 key购买 nike

我有一个包含两个表的数据库,我想通过一个查询获取这些表中的行总数。
到目前为止,T已尝试:

SELECT (count(bill.*) + count(items.*)) as TTL FROM bill, items // Failed 
SELECT count(*) as TTL FROM bill, items // wrong total
SELECT (count(bill.ID_B) + count(items.ID_I)) as TTL FROM bill, items // wrong total
SELECT count(bill.ID_B + items.ID_I) as TTL FROM bill, items // return the biggest total

最佳答案

使用两个子查询:

select (select count(1) from bill) + (select count(1) from items);

关于sql - 如何通过一个查询获取数据库的总行数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12648565/

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