恶补SQL中)牛客SQL题
创始人
2025-05-28 13:39:31

SQL1 查询所有列

select * from user_profile;

SQL2 查询多列 

select device_id,gender,age,university from user_profile;

SQL3 查询结果去重 

select distinct university from user_profile;

 SQL4 查询结果限制返回行数

select device_id from user_profile limit 2;

SQL5 将查询后的列重新命名

select device_id as 'user_infos_example' from user_profile limit 2;

 SQL6 查找学校是北大的学生信息

select device_id,university from user_profile where university='北京大学';

 SQL7 查找年龄大于24岁的用户信息

select device_id,gender,age,university from user_profile where age>24;

 SQL8 查找某个年龄段的用户信息

select device_id,gender,age from user_profile where age>=20 and age<=23;

SQL9 查找除复旦大学的用户信息

select device_id,gender,age,university from user_profile where university!='复旦大学';

 SQL10 用where过滤空值练习

select device_id,gender,age,university from user_profile where age is not null;

 SQL36 查找后排序

select device_id,age from user_profile order by age asc;

 SQL37 查找后多列排序

select device_id,gpa,age from user_profile order by gpa asc, age asc;

 SQL38 查找后降序排列

select device_id,gpa,age from user_profile order by gpa desc,age desc;

 SQL11 高级操作符练习(1)

select device_id,gender,age,university,gpa from user_profile where gpa>3.5 and gender='male';

 SQL12 高级操作符练习(2)

select device_id,gender,age,university,gpa from user_profile where gpa>3.7 or university='北京大学';

 SQL13 Where in 和Not in

select device_id,gender,age,university,gpa from user_profile where university in ('北京大学','复旦大学','山东大学');

 SQL14 操作符混合运用

select device_id,gender,age,university,gpa from user_profile where (gpa>3.5 and university='山东大学') or (gpa>3.8 and university='复旦大学');

 SQL15 查看学校名称中含北京的用户

select device_id,age,university from user_profile where university like '%北京%';

 

相关内容

热门资讯

猫咪吃了塑料袋怎么办 猫咪误食... 你知道吗?塑料袋放久了会长猫哦!要说猫咪对塑料袋的喜爱程度完完全全可以媲美纸箱家里只要一有塑料袋的响...
长白山自助游攻略 吉林长白山游... 昨天介绍了西坡的景点详细请看链接:一个人的旅行,据说能看到长白山天池全凭运气,您的运气如何?今日介绍...
吸猫伐是什么意思 吸猫是吸哪里 作为铲屎官,相信对于网络上流行的各种与猫咪相关的梗都是了然于心的,什么吸猫啦,撸猫啦,云养猫啦……等...
上海好玩的地方排行榜 上海刺激... 上海旅游,不只有外滩、东方明珠和浦东陆家嘴的三件套,还有一些特色的地方,丰富了这座城市的内涵,赋予了...
脚上的穴位图 脚面经络图对应的... 人体穴位作用图解大全更清晰直观的标注了各个人体穴位的作用,包括头部穴位图、胸部穴位图、背部穴位图、胳...