Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我无法使用 sql server 中的“freetext”过滤表中的电子邮件。例如:
select * from abc where column = 'abc@gsd.com'
正在获取所有具有 @ 和 .com 的数据。
希望此查询适用于您的案例:
SELECT * FROM ABC WHERE COLUMN LIKE '%@%.com'
谢谢