标签: sql
我正在查询数据库以选择以某个子字符串结尾的字符串,例如yahoo.com。
yahoo.com
要选择相等的字符串,我会调用select * from users where email='test@yahoo.com'。
select * from users where email='test@yahoo.com'
如何选择电子邮件以yahoo.com结尾的用户?
答案 0 :(得分:8)
如果您使用类似搜索并且不要在结尾处放置百分比,那么它实际上是"以"结尾。
Select * from users where email like '%yahoo.com'