题解 | #查找某个年龄段的用户信息#
查找某个年龄段的用户信息
http://www.nowcoder.com/practice/be54223075cc43ceb20e4ce8a8e3e340
SELECT device_id, gender, age FROM user_profile WHERE age >= 20 and age <= 23 ;
查找某个年龄段的用户信息
http://www.nowcoder.com/practice/be54223075cc43ceb20e4ce8a8e3e340
SELECT device_id, gender, age FROM user_profile WHERE age >= 20 and age <= 23 ;
相关推荐