0

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.

Gordon Linoff
  • 1,242,037
  • 58
  • 646
  • 786

1 Answers1

0

Hope this Query Works fine for your Case:

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

Thanks

Thiyagu
  • 1,260
  • 1
  • 5
  • 14