I have a table with a name, age and address. I have only five rows of data in a table. For some strings, age remains null. I need to display all data in which age is not zero.
select * from sample_table where (age! = null);
But the conclusion is not output, and it also does not give an error. Please explain this. Thanks.
source
share