Email ID filter using freetext sql server

137 views Asked by At

I cannot able to filter email from table using 'freetext' in sql server. For ex:

select *
from abc
where column = '[email protected]'

is getting all data having @ and .com think so.

1

There are 1 answers

0
Thiyagu On

Hope this Query Works fine for your Case:

SELECT * FROM ABC WHERE COLUMN LIKE '%@%.com'

Thanks