I have a table called parents. It has a column named share_src which is indexed. Currently it is having 5 rows. Three of them have NULL while others have post_4556 as their value.
I am running this statement -: SELECT * FROM parents WHERE share_src != 'post_4556'. It should return those three rows which have share_src as NULL. But it is returning 0 rows.
What is wrong in my query. Thanks for help.