Click here to Skip to main content
15,917,709 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
Hi I want to search full text with boolean operators not only simple AND and OR.
It should be With Mulitiple AND's and OR's.
That criteria must be in this format like .net and developer and programmer and IT and Software or testing or manager or hardware or director.
Posted
Comments
OriginalGriff 23-May-11 6:07am    
And what have you tried?

1 solution

Not clear but for above this will be the query

SQL
select * from Your [Table] where [yourColumnName]  like '%.net%' and 'developer' and  'programmer' and 'IT'
and 'Software' or 'Testing' or 'Manager' or 'Hardware' or 'director'
 
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