I'm using the following:
SELECT * FROM tab_cars WHERE car_details >= 'a'
to check for data in a column. It works but only if the user has entered a character in the field, not if they enter a number.
I've also tried
WHERE car_details NOT NULL
but am getting a syntax error.
How can I check for "any data"?