I cannot able to filter email from table using 'freetext' in sql server. For ex:
select *
from abc
where column = 'abc@gsd.com'
is getting all data having @ and .com think so.
I cannot able to filter email from table using 'freetext' in sql server. For ex:
select *
from abc
where column = 'abc@gsd.com'
is getting all data having @ and .com think so.
Hope this Query Works fine for your Case:
SELECT * FROM ABC WHERE COLUMN LIKE '%@%.com'
Thanks