I am trying to have a query where it joins two tables where the names are like one another.
select name,school,address,city,st_abbr,zip5,phone
from temp_complete_list c
join temp_sss s on st_abbr=state_code
where name like '%'school'%' ---------This doesn't work
Is it possible to do a query like this?
select name,school,address,city,st_abbr,zip5,phone
from temp_complete_list c
join temp_sss s on st_abbr=state_code
where name like '%'school'%' ---------This doesn't work
Is it possible to do a query like this?