Please help me for finding a word from a field of database
Database
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, Please any one can help me for how I find a word from a paricular field from database in SQL Please reply urgently. Regards, Jesal Rana OK
-
Hi, Please any one can help me for how I find a word from a paricular field from database in SQL Please reply urgently. Regards, Jesal Rana OK
select a from table where a like '%word%'
Or set up a full text index and use the CONTAINS predicate.