When executed the following query it is returning null.
Explanation: the longitude is a varchar column, many rows are there having longitude = null but this query did not return anything.
I thing I am missing a minute thing.
select * from fb_event where longitude =null
Your where clause should read
where longitude is null.Null does not equal null, so you must use “is” instead of “=”.