首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

怎么使用一条sql语句统计行数

2013-07-08 
如何使用一条sql语句统计行数本来我是这么写的,自己感觉也不满意 declare @rowCount int,@rowCount1 int ,

如何使用一条sql语句统计行数
本来我是这么写的,自己感觉也不满意 


declare @rowCount int,@rowCount1 int ,@rowCount2 int
set @rowCount=0
select @rowCount1=count(*) from elecpolicy where epprodsn = ''
select @rowCount2=count(*) from SonyPolicyRecommend where epprodsn = ''
set @rowCount=@rowCount1+@rowCount2
select @rowCount

能不能有一种办法 ,  一条sql查询出结果?
[解决办法]
select (select count(*) from elecpolicy where epprodsn = '')+(select count(*) from SonyPolicyRecommend where epprodsn = '')

热点排行