i have this sql code
select a_lastname, a_firstname, subject
from master
where subject = %keyword%
it dosent work, i think the problem is in the WHERE clause.
what is the correct way to right the WHERE clause to search for any word in any field of the SUBJECT field.. thanks
select a_lastname, a_firstname, subject
from master
where subject = %keyword%
it dosent work, i think the problem is in the WHERE clause.
what is the correct way to right the WHERE clause to search for any word in any field of the SUBJECT field.. thanks