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 is there a better way to do this?:
and lower(b.name) = "jack"
Thanks,
Kathy
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 is there a better way to do this?:
and lower(b.name) = "jack"
Thanks,
Kathy