Hello,
I have the following select statement:
select a.name, a.address, a.telephone, b.jobtitle
from person a, job b
where a.jobtitleid = b.jobtitleid
and b.name = "jack"
How can I change it so that it looks for all cases of the name (i.e jack, Jack, JACK, etc...) Can I do the following or...