I just read on another forum this solution SELECT * FROM table_name WHERE column_name > ''; for those who come across this thread in the future. Thanks JoeO
Probably just easier to do this: SELECT * FROM table_name WHERE NOT ISNULL([columnname]); Code (sql):