判断表是否为空?

 if  (select  count(*)  from  table)>0  

select  *  from  test  
if  @@rowcount  >0  

if  exists  (select  *  from  test)  

if  (select  top  1  id  from  test)  is  null  

你可能感兴趣的:(判断表是否为空?)