Is there an XOR operator or equivalent function in SQL Server (T-SQL)?
From your comment:
Example: WHERE (Note is null) ^ (ID is null)
you could probably try:
where (case when Note is null then 1 else 0 end) <>(case when ID is null then 1 else 0 end)