1.现在运营想要查看用户信息表中所有的数据,请你取出相应结果select *from user_profile2.现在运营同学想要用户的设备id对应的性别、年龄和学校的数据,请你取出相应数据SELECT device_id,gender,age,universityfrom user_profile3.现在运营需要查看用户来自于哪些学校,请从用户信息表中取出学校的去重数据。两个解法:(1) 使用DISTINCT:SELECT DISTINCT university from user_profile(2)使用group by:SELECT university from user_profil...