Skip to main content

SQL

How to not display the column header in the output of a MS SQL Script?

Posted in

If you are using the SQLCMD utility and want to avoid or suppress the column header in the output of SQL Script.

How to Retrieve record with Null Values in MS SQL

Posted in

How to retrieve records from table which has null values.

Here is the Script which will list records which has null values for CountryID column. 

select * from yourTable where CountryID is null

 

Syndicate content