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