Subject What key word specifies a search for an entire word?
Author
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"?