我有两个表,并且想要每个表中的总行数.实际的
查询更复杂,因为每个计数都会存在…子句
如何在t-sql中执行以下操作?
select count(*) from table1 + count(*) from table2
要么
select sum(count(*) from table1,count(*) from table2)
select (select count(PrimaryKeyID) from FirstTable)
+ (select COUNT(PrimaryKeyID) from TableSecond)
所以我认为我们应该避免在下面的查询中使用星号.因为它可能会导致查询中的性能下降
select (select count(*) from FirstTable)
+ (select COUNT(*) from TableSecond)