Hi,
I would do something like this:
select * from cars_table where body not equal to null
.select * from cars_table where values not equal to null And id = "3"
I know the syntax for 'not equal' is <>
, but I get an empty results.
For the second part, I want to get a result set where it only returns the columns that have a value. So, if the value is null, then don't include that column.
Thanks