能把多个sql统计语句合并成一条语句的多个字段吗
select'wordnum',count(*)fromdict_cet4unionallselect'learnnum',count(*)fromdict_cet4wh...
select 'wordnum',count(*) from dict_cet4
union all
select 'learnnum',count(*) from dict_cet4 where learncount>0
union all
select 'remembernum',count(*) from dict_cet4 where wordtype=1
union all
select 'skillednum',count(*) from dict_cet4 where wordtype=2
union all
select 'uselessnum',count(*) from dict_cet4 where wordtype=3
这样查询的记录是
wordnum 565
learnnum 5
remembernum 6
skillednum 5
uselessnum 34
这样子五条记录,我等否统计成一条记录的5个字段呢
我的意思是说组合成一条记录,我可以用a=rs[wordnum],b=rs[learnnum],c=rs[remembernum],d=rs[skillednum]这样一次输出,而不是多条记录循环才能输出 展开
union all
select 'learnnum',count(*) from dict_cet4 where learncount>0
union all
select 'remembernum',count(*) from dict_cet4 where wordtype=1
union all
select 'skillednum',count(*) from dict_cet4 where wordtype=2
union all
select 'uselessnum',count(*) from dict_cet4 where wordtype=3
这样查询的记录是
wordnum 565
learnnum 5
remembernum 6
skillednum 5
uselessnum 34
这样子五条记录,我等否统计成一条记录的5个字段呢
我的意思是说组合成一条记录,我可以用a=rs[wordnum],b=rs[learnnum],c=rs[remembernum],d=rs[skillednum]这样一次输出,而不是多条记录循环才能输出 展开
2个回答
展开全部
如果 a 和 b 结构一样 select a from tablename where b=1 union(unionall)select b from tablename where b=2;
如果结构不一样,但两者有关联的 column
select a.a , b.b from t1 a,t2 b where a.a=1 and b.b=2 and a.x=b.x;
如果结构不一样,且无关联的 column
如果结构不一样,但两者有关联的 column
select a.a , b.b from t1 a,t2 b where a.a=1 and b.b=2 and a.x=b.x;
如果结构不一样,且无关联的 column
追问
不是两个表,是同一个表的几个不同查询语句,我想组成一条记录方便输出。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询