sql查询多表数据总数 a表有20条记录 b有30条 c有50条
sql查询多表数据总数 a表有20条记录 b有30条 c有50条
日期:2011-01-19 09:16:43 人气:2
select count(*) from
(
select 1 f1 from a
union all
select 1 f1 from b
union all
select 1 f1 from c
) t
sql查询多表数据总数 a表有20条记录 b有30条 c有50条