题解 | #查看学校名称中含北京的用户#
查看学校名称中含北京的用户
https://www.nowcoder.com/practice/95d9922b1e2a49de80daa491889969ee
select `device_id`, `age`, `university` from `user_profile` where university like '%北京%';
本题使用到了 模糊查询LIKE,LIKE与后面通配符字符串匹配。 %表示任何字符,'%北京%'则表示无论北京前后是什么字符都可以匹配。