Find null value in a table

What are all the different ways available to find the null value in a table

Questions by kthy86

Showing Answers 1 - 10 of 10 Answers

In pl/sql:
"is null" and "is not null" are the best way to find null and not null values resp.

In t-sql
if ansi_nulls is off then(set ansi_nulls off)
"=" will work to search the null values

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions