Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Come rimuovere le righe nulle dal risultato della query sql?

select 
  c.Id, c.FirstName, dbo.GetClientStaffContacts(c.Id, '27,31') as Staff 
from 
  Client c 
where
  dbo.GetClientStaffContacts(c.Id, '27,31') is not null
order 
  by c.Id