SQL || MySQL ||作者:穆尼塞卡·乌达瓦拉帕蒂
来源:dev.to
时间:2024-10-15 17:13:02 128浏览 收藏
本篇文章主要是结合我之前面试的各种经历和实战开发中遇到的问题解决经验整理的,希望这篇《SQL || MySQL ||作者:穆尼塞卡·乌达瓦拉帕蒂》对你有很大帮助!欢迎收藏,分享给更多的需要的朋友学习~
1.sql第2部分
1.创建类表
create table class( class_id int primary key, class_name varchar(50), foreign key (teacher_id) references teacher(teacher_id) );
2.创建教师表
create table teacher ( teacher_id int primary key, teacher_name varchar(100), age int, subject varchar(50), experience int );
3.将教师数据插入表
insert into teacher(teacher_id,teacher_name,age,subject,experience) values (101, 'sk. sohana', 30, 'mathematics', 5), (102, 'u. munisekhar', 35, 'english', 8), (103, 'sk. nellu', 40, 'science', 10), (104, 'a. venu', 28, 'history', 3);
4.将类数据插入表
insert into class(class_id,class_name,teacher_id) (9, 'math', 101), (10, 'english', 102), (11, 'science', 103), (12, 'history', 104);
教师桌
teacher_id | teacher_name | age | subject | experience |
---|---|---|---|---|
101 | sk. sohana | 30 | mathematics | 5 |
102 | u. munisekhar | 35 | english | 8 |
103 | sk. nellu | 40 | science | 10 |
104 | a. venu | 28 | history | 3 |
105 | s. jagadeesh | 28 | telugu | 3 |
类表
class_id | class_name | teacher_id |
---|---|---|
9 | math | 101 |
10 | english | 102 |
11 | science | 103 |
12 | history | 104 |
- 从class表中获取数据
select * from class;
| class_id | class_name | teacher_id | |----------|--------------------|------------| | 9 | math | 101 | | 10 | english | 102 | | 11 | science | 103 | | 12 | history | 104 |
- 从教师表中获取数据 5年经验教师
select * from teacher whare experience >5
| teacher_id | teacher_name | age | subject | experience | |------------|--------------------|-----|---------------|------------| | 102 | u. munisekhar | 35 | english | 8 | | 103 | sk. nellu | 40 | science | 10 |
7.查找munisekhar老师详细信息
select * from teacher where teacher_name='u. munisekhar'
| teacher_id | teacher_name | age | subject | experience | |------------|--------------------|-----|---------------|------------| | 102 | u. munisekhar | 35 | english | 8 |
8.找到 sk. sohana老师的经验?
select experience from teacher where teacher_name='sk. sohana';
| experience | |------------| | 8 |
9.查找老师的姓名和年龄,其中年龄为 29 至 39
select name,age from teacher where age between 29 and 39;
| teacher_name | age | |--------------------|-----| | sk. sohana | 30 | | u. munisekhar | 35 |
10.查找班级名称和老师姓名以使用左连接
select class.class_name, teacher.teacher_name from class right join teacher on class.teacher_id=teacher.teacher_id;
| class_name | teacher_name | |------------|--------------------| | math | sk. sohana | | english | u. munisekhar | | science | sk. nellu | | history | a. venu |
11.查找班级名称和所有教师姓名以使用右连接
select class.class_name, teacher.teacher_name from class right join teacher on class.teacher_id=teacher.teacher_id;
| class_name | teacher_name | |------------|--------------------| | math | sk. sohana | | english | u. munisekhar | | science | sk. nellu | | history | a. venu | | null | s. jagadeesh |
12.查找班级名称和教师姓名以使用内连接
select class.class_name, teacher.teacher_name from class inner join teacher on class.teacher_id=teacher.teacher_id;
| class_name | teacher_name | |------------|--------------------| | math | sk. sohana | | english | u. munisekhar | | science | sk. nellu | | history | a. venu |
13.查找munisekhar班级显示他的姓名和班级
select teacher.teacher.name, class.class_name from teacher right join class on teacher.teacher_id=class.teacher_id where teacher.teacher_name = 'u. munisekhar';
| teacher_name | class_name | |--------------------|------------| | U. Munisekhar | English |
理论要掌握,实操不能落!以上关于《SQL || MySQL ||作者:穆尼塞卡·乌达瓦拉帕蒂》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注golang学习网公众号吧!
声明:本文转载于:dev.to 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
最新阅读
更多>
-
174 收藏
-
323 收藏
-
475 收藏
-
140 收藏
-
426 收藏
-
363 收藏
课程推荐
更多>
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习