I have a simple query that isn't working.
select *
from table
where '"Name (xyz)"' LIKE '%AB CD EF G%';
I am trying to return the row such that the column Name (xyz) = AB CD EF G . I have checked and my database does contain such a data entry but still the query yields 0 results yet no error messages. The spaces in the column name and desired search parameter are there by design.