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
vindarel -
Florian Lenz -
Elxpro -
Ikoh Sylva -
Top comments (0)