Guys, pls help me to solve this problem.
In my search engine, i wish to do a search with both skill1 and skill2 fulfilled. I am using "MSQL" db.
Example:
select * from skills where skill_id= "Java" and skill_id="Php";
- I don't want the "OR" condition but "AND".
- Pls make the solution be dynamic and not static. I know the static answer which hard code the search.
Example:
select skill_cde from skills where skill_id="Java";
select * from skills where skill_id="PHP" and skill_cde="1234";
pls give me a full algorithm and detail explaination asap.
Thanks a lot!