> SQL4 查询结果限制返回行数 select device_id from user_profile where device_id is not null limit 0,2; -- 写法2:limit 2 -- 返回2行数据 > SQL8 查找某个年龄段的用户信息 select device_id,gender,age from user_profile -- where age>=20 and age<=23; where age between 20 and 23; > SQL9 查找除复旦大学的用户信息 select device_id,gende...