Do not write
SELECT * FROM [table_name] WHERE [column_name]=NULL;
Use "IS" for NULL!!!!
SELECT * FROM [table_name] WHERE [column_name] IS NULL;
I wasted 2hours for this...
Do not write
SELECT * FROM [table_name] WHERE [column_name]=NULL;
Use "IS" for NULL!!!!
SELECT * FROM [table_name] WHERE [column_name] IS NULL;
I wasted 2hours for this...
For further actions, you may consider blocking this person and/or reporting abuse
Pawani Madushika -
Jemmy Dalsaniya -
Gilles Hamelink -
vdaubry -
Top comments (0)