Following is my problem;
- I created a table using
create table timepass(anyvalue bigint(19),name varchar(20));
And i inserted some null values into it.
Now the table looks like this.
"anyvalue" "name"
Null Rahul
12 Satish
Null shubhanshu
Now when I fire the query
select * from timepass where name ='Rahul' and anyvalue=Null ;
Or when i fire the query
select * from timepass where anyvalue='Null';
I dont get any result.
I dont understand why this is happening someone pls explain..