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

Come posso verificare se una stringa del server SQL è nulla o vuota

Penso questo:

SELECT 
  ISNULL(NULLIF(listing.Offer_Text, ''), company.Offer_Text) AS Offer_Text
FROM ...

è la soluzione più elegante.

E per scomporlo un po' in pseudocodice:

// a) NULLIF:
if (listing.Offer_Text == '')
  temp := null;
else
  temp := listing.Offer_Text; // may now be null or non-null, but not ''
// b) ISNULL:
if (temp is null)
  result := true;
else
  result := false;