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
akhil mittal -
Yasmine Cherif -
Sarah Thomas -
Vânia Gomes -
Top comments (0)