Click here to Skip to main content
15,999,229 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi ,

I am working on a job portal project,and i received a task on searching jobs based on the keywords.

Could you tell me ,how to find list of jobs by keywords?,and also other kind of criteria for job portals.

Thanking you all.
Posted

Use the following type of query on your database ( this assumes you have a jobs table with a column keyword that stores the keyword information).
SQL
select * from jobs where keyword like '%somekeyword%'


For more information go to your project manager and ask him about your projects schema structure.
 
Share this answer
 
you can "like" statement ...

declare @prefix varchar(50)
set prefix='your string'
select * from tbl_name where name like @prefix+'%'
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900