例如:
select count(1) total from t1 where a = '1';
统计total的数量是:3。
然后
select count(1) total from t2 where a = '2';
统计的数量是:4。
想要的结果是两个表total相加结果是:7。
求大神指点下,怎么能用一条sql语句给实现了,谢谢。
例如:
select count(1) total from t1 where a = '1';
统计total的数量是:3。
然后
select count(1) total from t2 where a = '2';
统计的数量是:4。
想要的结果是两个表total相加结果是:7。
求大神指点下,怎么能用一条sql语句给实现了,谢谢。
SELECT
a.total + b.total total
FROM
(
SELECT
count(1) total
FROM
t1
WHERE
a = '1'
) a,
(
SELECT
count(1) total
FROM
t2
WHERE
a = '2'
) b;