1

我有一个包含两个表的数据库,我想通过单个查询获取这些表中的总行数。到目前为止,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
4

1 回答 1

3

使用两个子查询:

select (select count(1) from bill) + (select count(1) from items);
于 2012-09-28T23:29:22.410 回答