I want to create a full text search using MsSql 2005.
Here is the structure of my table:
- User-contains fields of
Id,fname,lname,email,alternativeemail - Attachment-contains fields of
id,name,category,filenameorurl - Certification-contains of fileds of
id,title,school,sdate,edate - EducationalBackground-contain of fields of
id,qualification,sdate,edate,school,fieldofstudy - EmploymentDetails-contain of fields
position,positionlevelid,specializationid,description
The relationship of user to the other table is a one-to-many relationship.
How can I create an effective query to have quick full text search and return the values of the different tables?
1 Answer