Using =null instead of isnull
What is the result for this query although there null in address column SELECT EMPLOYEENAME,EMPLOYEEADDRESS FROM EMPLOYEE WHERE ADDRESS=NULL Ofcourse will get a result set with no datarows Write a query like SELECT EMPLOYEENAME,EMPLOYEEADDRESS FROM EMPLOYEE WHERE ADDRESS=NULL will get a result set with zero rows of data although there is rows having value null…
read more