题解 | 查看学校名称中含北京的用户
查看学校名称中含北京的用户
https://www.nowcoder.com/practice/95d9922b1e2a49de80daa491889969ee
select device_id, age,university from user_profile where university like '%北京%';
SELECT device_id, age, university
: 选择device_id
、age
和university
列。FROM user_profile
: 从user_profile
表中获取数据。WHERE university LIKE '%北京%'
: 使用LIKE
运算符筛选出university
列中包含“北京”字样的记录。