I have this:
"SELECT fstName, fiKeyID FROM Members WHERE lower(fstName) LIKE lower('%' ||
@p0 || '%')"
Assume fstName includes "Richard" and "Rich". If I search for "Rich" it finds
both names.
What do I modify so it finds only "Rich"?
