题解 | #查看学校名称中含北京的用户#
查看学校名称中含北京的用户
http://www.nowcoder.com/practice/95d9922b1e2a49de80daa491889969ee
通配符
这里用通配符来查找: %x% 表示包含x在内,通配符要与like搭配使用
select device_id,age,university
from user_profile
where university like "%北京%";
查看学校名称中含北京的用户
http://www.nowcoder.com/practice/95d9922b1e2a49de80daa491889969ee
这里用通配符来查找: %x% 表示包含x在内,通配符要与like搭配使用
select device_id,age,university
from user_profile
where university like "%北京%";
相关推荐