mysql嵌套建表语句_手撸Mysql原生语句--多表

在开始之前,我们需要建立表,做建表和数据的准备的工作。

1.建表

create table department(

id int,

name varchar(20)

);

create table employee(

id int primary key auto_increment,

name varchar(20),

sex enmu('male','female') not null default = 'male',

age int,

dep_id int,

constraint fk_id foreign key(dep_id) references department(id),

);

2.插入数据

insert into department values

(200,'技术'),

(201,'人力资源'),

(202,'销售'),

(203,'运营');

insert into employee (name,sex,age,dep_id)values

('egon','male',18,200),

('alex','female',48,201),

('wupeiqi','male',38,201),

('yuanhao','female',28,202),

('liwenzhou','male',18,200),

('jingliyang','female',18,204);

# 查看表结构

desc department;

desc employee;

# 查看我们插入的数据

select * from department;

select * from employee;

多表的查询,我们主要是分为两种查询,这两种查询分别是多表连接查询和子查询两种情况。

多表连接查询

1.交叉连接:不适用任何匹配条件。生成笛卡尔积。

select * from employee,department;

2.内连接

# 找两张表共有部分,相当于利用笛卡儿积结果中筛选出正确的结果。

# department没有204这个部门,因而employee表中关于204这条员工信息没有匹配出来

select employee.id,employee.name,employee.age,employee.sex,department.name from employee inner join department on employee.dep_id=department.id;

上面的sql语句等价于下面的sql语句

select employee.id,employee.name,employee.age,employee.sex,department.name from employee,department where employee.dep_id=department.id;

3.外连接之左连接:优先显示左表全部记录

# 以左表为标准,即找出所有员工信息,当然包括没有部门的员工

# 本质就是:在内连接的基础上增加左边有而右边没有的结果

select employee.id,employee.name,department.name as depart_name from employee letf join department on employee.dep_id=department.id;

4.外连接之右连接:优先显示右表全部记录

# 以右表为标准,即找出所有部门信息,包括没有员工的部门

# 本质就是:在内连接的基础上增加右边有而左边没有的结果

select employee.id,employee.name,department.name as depart_name from employee right join department on empolyee.dep_id=department.id;

5.全外连接:显示左右两个表全部的记录

select * from employee left join department on employee.dep_id = department.id

union

select * from employee right join department on employee.dep_id = department.id;

#注意 union与union all的区别:union会去掉相同的纪录

6.符合条件连接查询

# 实例1:以内连接的方式查询employee和department表,并且employee表中的age字段值必须大于25,即找出年龄大于25岁的员工以及员工所在的部门

select employee.name,department.name from employee inner join department on employee.dep_id=department.id where age > 25;

#示例2:以内连接的方式查询employee和department表,并且以age字段的升序方式显示

select employee.id,employee.name,employee.age,department.name from employee inner join department on employee.dep_id=department.id order by age asc;

子查询

# 1.子查询是将一个查询语句嵌套在另外一个查询语句中。

# 2.内层查询语句的查询结果,可以为外层查询语句提供查询条件。

#3:子查询中可以包含:IN、NOT IN、ANY、ALL、EXISTS 和 NOT EXISTS等关键字

#4:还可以包含比较运算符:= 、 !=、> 、

1.带IN关键字的子查询

#查询平均年龄在25岁以上的部门名

select id,name from department

where id in

(select dep_id from employee group by dep_id having avg(age) > 25);

这两个sql语句是等价的。

select department.name from employee inner join department on employee.dep_id=department.id where employee.age > (select avg(age) from employee group by dep_id);

#查看技术部员工姓名

select name from employee

where dep_id in

(select id from department where name='技术');

#查看不足1人的部门名(子查询得到的是有人的部门id)

select name from department where id not in (select distinct dep_id from employee);

2.带比较运算符的子查询

#比较运算符:=、!=、>、>=、

#查询大于所有人平均年龄的员工名与年龄

mysql> select name,age from emp where age > (select avg(age) from emp);

+---------+------+

| name | age |

+---------+------+

| alex | 48 |

| wupeiqi | 38 |

+---------+------+

2 rows in set (0.00 sec)

#查询大于部门内平均年龄的员工名、年龄

select t1.name,t1.age from emp t1

inner join

(select dep_id,avg(age) avg_age from emp group by dep_id) t2

on t1.dep_id = t2.dep_id

where t1.age > t2.avg_age;

3 带EXISTS关键字的子查询

EXISTS关字键字表示存在。在使用EXISTS关键字时,内层查询语句不返回查询的记录。

而是返回一个真假值。True或False

当返回True时,外层查询语句将进行查询;当返回值为False时,外层查询语句不进行查询

#department表中存在dept_id=203,Ture

mysql> select * from employee

-> where exists

-> (select id from department where id=200);

+----+------------+--------+------+--------+

| id | name | sex | age | dep_id |

+----+------------+--------+------+--------+

| 1 | egon | male | 18 | 200 |

| 2 | alex | female | 48 | 201 |

| 3 | wupeiqi | male | 38 | 201 |

| 4 | yuanhao | female | 28 | 202 |

| 5 | liwenzhou | male | 18 | 200 |

| 6 | jingliyang | female | 18 | 204 |

+----+------------+--------+------+--------+

#department表中存在dept_id=205,False

mysql> select * from employee

-> where exists

-> (select id from department where id=204);

Empty set (0.00 sec)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
### 回答1: MySQL是最常用的关系型数据库管理系统之一,可以使用SQL语言来管理和操作数据库。下面是一些常用的MySQL建表SQL语句。 1. 创建数据库: CREATE DATABASE database_name; 2. 使用数据库: USE database_name; 3. 创建表: CREATE TABLE table_name ( column1 datatype constraint, column2 datatype constraint, ... ); 4. 添加主键: ALTER TABLE table_name ADD PRIMARY KEY (column_name); 5. 添加外键: ALTER TABLE table_name ADD CONSTRAINT FK_name FOREIGN KEY (foreign_key_column) REFERENCES parent_table (primary_key_column); 6. 添加索引: CREATE INDEX index_name ON table_name (column_name); 7. 插入数据: INSERT INTO table_name (column1, column2, ...) VALUES (value1, value2, ...); 8. 更新数据: UPDATE table_name SET column1 = new_value1, column2 = new_value2 WHERE condition; 9. 删除数据: DELETE FROM table_name WHERE condition; 10. 查询数据: SELECT column1, column2, ... FROM table_name WHERE condition; 以上仅是MySQL建表和数据操作的基本语句,还有许多其他的高级用法和语法,可以根据具体需求进一步学习和掌握。MySQL提供了强大的数据管理功能,使得对数据的存储和查询变得更加高效和方便。 ### 回答2: MySQL建表是通过使用SQL语句来创建一个新的数据库表。下面是一个简单的例子来说明如何使用SQL语句来创建MySQL表。 首先,我们需要打开MySQL命令行界面或图形界面工具,然后选择要创建表的数据库。假设我们已经选择了名为"mydatabase"的数据库。 接下来,我们可以使用CREATE TABLE语句来创建一个新的表。以下是一个示例的CREATE TABLE语句: CREATE TABLE mytable ( id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(50), age INT, email VARCHAR(100) ); 在上面的示例中,我们创建了一个名为"mytable"的表,在该表中包含了四个列。第一列是"id",它是整数类型,并且设置为自动增加。它还被指定为主键,这意味着每个条目都有一个唯一的id值。第二列是"name",它是一个可变长度的字符列,最大长度为50个字符。第三列是"age",它是一个整数类型。第四列是"email",它是一个可变长度的字符列,最大长度为100个字符。 CREATE TABLE语句中的其他选项可以根据需要进行更改和添加。例如,我们可以指定列的约束、索引、默认值等。 在完成CREATE TABLE语句后,我们可以执行它来创建新的表。然后,我们可以使用ALTER TABLE语句来修改表结构,例如添加新的列、删除列或更改列的数据类型。使用INSERT INTO语句可以向表中插入数据,使用SELECT语句可以检索表中的数据。 总结起来,MySQL建表的过程包括选择数据库、使用CREATE TABLE语句创建表、使用ALTER TABLE语句修改表结构(可选)、使用INSERT INTO语句插入数据,以及使用SELECT语句检索数据。 ### 回答3: MySQL是一种广泛使用的关系型数据库管理系统,建表是在MySQL中创建数据表的过程。建表是通过执行SQL语句来实现的。 建表的SQL语句包括CREATE TABLE语句和相关的列定义。 CREATE TABLE语句的一般格式如下: CREATE TABLE 表名 ( 列名1 数据类型1, 列名2 数据类型2, ... ); 其中,表名是我们要创建的数据表的名称。列名是数据表中的每一列的名称。数据类型定义了每一列所存储的数据的类型,如整数、字符、日期等。 例如,我们要创建一个名为“users”的数据表,包含id、name和age三个列,可以使用如下的建表语句: CREATE TABLE users ( id INT PRIMARY KEY AUTO_INCREMENT, name VARCHAR(50) NOT NULL, age INT ); 上述建表语句中,id列使用INT数据类型,表示整数,并设置为主键(PRIMARY KEY),同时使用AUTO_INCREMENT属性来自动增加其值。name列使用VARCHAR(50)数据类型,表示最大长度为50的字符。age列使用INT数据类型,表示整数。 建表语句中还可以使用多种约束条件来约束列的取值范围,如NOT NULL表示该列不允许为空值,UNIQUE表示该列的值是唯一的,DEFAULT表示该列的默认值等。 通过执行建表语句,我们可以在MySQL中创建一个符合我们需求的数据表,供我们存储和管理数据。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值