Search for text in Database
Is there away to search for text in Database in Sql server
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sonu GuptaPosted Nov 12, 2019, 7:15 AM
Rajanikant HawaldarPosted Nov 12, 2019, 6:06 AM
Mageshwaran RPosted Nov 12, 2019, 5:54 AM
Sourav MukherjeePosted Jan 21, 2019, 8:49 PM
Code AlonePosted Jan 21, 2019, 4:00 AM
Jenith ThakkarPosted Jan 21, 2019, 3:19 AM
DECLARE @SearchStr nvarchar(100)
Sreekanth ReddyPosted Jan 21, 2019, 2:16 AM
Rakesh SinghPosted Apr 27, 2013, 3:26 AM
if u have to search particular column name(string,number) or else
write query
select * from table where column name like '%Rakesh'
tejal bhesaniyaPosted Oct 23, 2012, 5:40 AM
Sudhakar ChaudharyPosted Oct 22, 2012, 9:49 AM
http://www.c-sharpcorner.com/UploadFile/raj1979/how-to-use-full-text-search-in-sql-server-2008/
Chetan KumarPosted Oct 22, 2012, 8:49 AM
U want to search content in column or text data type for tables.
u can use like condition if want search particular word or anythin
select * from tb1 where ename like '%shil%'