题解 | #查找学校是北大的学生信息#
查找学校是北大的学生信息
http://www.nowcoder.com/practice/7858f3e234bc4d85b81b9a6c3926f49f
两种方法:
##SELECT device_id,university from user_profile where university='北京大学';
select device_id,university from user_profile where university like '%北京%'
查看12道真题和解析