I want to query a table and get all rows where the column i_vhcl_recal is not empty. I ran the following below and kept getting rows that appeared to be empty. Upon inspection, that the fields weren't null but instead they were a string of blank spaces.
How to I query rows where i_vhcl_recal has an actual value and not blank spaces or nulls?
SELECT *
FROM table
WHERE i_vhcl_recal IS NOT NULL