Thursday 30 May 2019

MSSQL - Load records only if 1 of the specified columns is not null


Watch this example on YouTube


Check if at least 1 column is not null

Select * From TableWithNulls
WHERE Coalesce(FName, LName, Address) is not null

No comments:

Post a Comment