Advertisement
Fhernd

UsoISNULL.sql

Nov 27th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.21 KB | None | 0 0
  1. SET SHOWPLAN_TEXT ON;
  2. GO
  3.  
  4. SELECT JobCandidateID AS 'ID Candidato', BusinessEntityID AS 'ID Entidad'
  5.     FROM HumanResources.JobCandidate
  6.     WHERE ISNULL(BusinessEntityID, 1) <> 1;
  7. GO
  8. SET SHOWPLAN_TEXT OFF;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement