I have been reading the online documentatin but have not been able to make this work.
I have a table with a SEARCHNAME column which has uppercase lastname, firstname middlename, for example:
"LASTNAME, FIRSTNAME M"
"LANDRY, FILBERT W"
I want to search based on partial last and first names.
I tried this query:
SELECT * FROM PERSON WHERE SEARCHNAME LIKE 'LA%,FI%';
but it returns no rows. How do I make this wildcard search?
Thanks,
David
I have a table with a SEARCHNAME column which has uppercase lastname, firstname middlename, for example:
"LASTNAME, FIRSTNAME M"
"LANDRY, FILBERT W"
I want to search based on partial last and first names.
I tried this query:
SELECT * FROM PERSON WHERE SEARCHNAME LIKE 'LA%,FI%';
but it returns no rows. How do I make this wildcard search?
Thanks,
David