这一篇属于加强版,问题和sql语句如下。
创建users表,设置id,name,gender,sal字段,其中id为主键
drop table if exists users; create table if not exists users( id int(5) primary key auto_increment, name varchar(10) unique not null, gender varchar(1) not null, sal int(5) not null ); insert into users(name,gender,sal) values('AA','男',1000); insert into users(name,gender,sal) values('BB','女',1200);
--------------------------------------------------------------------------------------
一对一:AA的身份号是多少
drop table if exists users; create table if not exists users( id int(5) primary key auto_increment, name varchar(10) unique not null, gender varchar(1) not null, sal int(5) not null ); insert into users(name,gender,sal) values('AA','男',1000); insert into users(name,gender,sal) values('BB','女',1200); drop table if exists cards; create table if not exists cards( id int(5) primary key auto_increment, num int(3) not null unique, loc varchar(10) not null, uid int(5) not null unique, constraint uid_fk foreign key(uid) references users(id) ); insert into cards(num,loc,uid) values(111,'北京',1); insert into cards(num,loc,uid) values(222,'上海',2);
【注:inner join表示内连接】
select u.name "姓名",c.num "身份证号" from users u inner join cards c on u.id = c.uid where u.name = 'AA'; -- select u.name "姓名",c.num "身份证号" from users u inner join cards c on u.id = c.uid where name = 'AA';
---------------------------------------------
一对多:查询"开发部"有哪些员工
创建groups表
drop table if exists groups; create table if not exists groups( id int(5) primary key auto_increment, name varchar(10) not null ); insert into groups(name) values('开发部'); insert into groups(name) values('销售部');
创建emps表
drop table if exists emps; create table if not exists emps( id int(5) primary key auto_increment, name varchar(10) not null, gid int(5) not null, constraint gid_fk foreign key(gid) references groups(id) ); insert into emps(name,gid) values('哈哈',1); insert into emps(name,gid) values('呵呵',1); insert into emps(name,gid) values('嘻嘻',2); insert into emps(name,gid) values('笨笨',2);
查询"开发部"有哪些员工
select g.name "部门",e.name "员工" from groups g inner join emps e on g.id = e.gid where g.name = '开发部'; -- select g.name "部门",e.name "员工" from groups g inner join emps e on g.id = e.gid where g.name = '开发部';
------------------------------------------------------
多对多:查询"赵"教过哪些学生
创建students表
drop table if exists students; create table if not exists students( id int(5) primary key auto_increment, name varchar(10) not null ); insert into students(name) values('哈哈'); insert into students(name) values('嘻嘻');
创建teachers表
drop table if exists teachers; create table if not exists teachers( id int(5) primary key auto_increment, name varchar(10) not null ); insert into teachers(name) values('赵'); insert into teachers(name) values('刘');
创建middles表 primary key(sid,tid) 表示联合主键,这两个字段的整体要唯一
drop table if exists middles; create table if not exists middles( sid int(5), constraint sid_fk foreign key(sid) references students(id), tid int(5), constraint tid_fk foreign key(tid) references teachers(id), primary key(sid,tid) ); insert into middles(sid,tid) values(1,1); insert into middles(sid,tid) values(1,2); insert into middles(sid,tid) values(2,1); insert into middles(sid,tid) values(2,2);
查询"赵"教过哪些学生
select t.name "老师",s.name "学生" from students s inner join middles m inner join teachers t on (s.id=m.sid) and (m.tid=t.id) where t.name = '赵'; -- select t.name "老师",s.name "学生" from students s inner join middles m inner join teachers t on (s.id=m.sid) and (t.id=m.tid) where t.name = "赵";
--------------------------------------------------------------------------------------------------------
将5000元(含)以上的员工标识为"高薪",否则标识为"起薪"
将薪水为NULL的员工标识为"无薪"
将5000元(含)以上的员工标识为"高薪",否则标识为"起薪"
将7000元的员工标识为"高薪",6000元的员工标识为"中薪",5000元则标识为"起薪",否则标识为"试用薪"
---------------------------------------------------------------------------------------------------------
内连接(等值连接):查询客户姓名,订单编号,订单价格
【注:customers c inner join orders o使用了别名,以后o就代表orders】
select c.name "客户姓名",o.isbn "订单编号",o.price "订单价格" from customers c inner join orders o on c.id = o.customers_id; -- select c.name "客户姓名",o.isbn "订单编号",o.price "订单价格" from customers c inner join orsers o on c.id = o.customers_id;
on+两张表连接的条件.一张表的主键,一张表的外键
内连接:只能查询出二张表中根据连接条件都存在的记录,有点类似于数学中交集
----------------------------------------------------
外连接:按客户分组,查询每个客户的姓名和订单数
外连接:既可以根据连接条件查询出二张表中都存在的记录,也能根据一方,强行将另一方就算不满兄条件的记录也能查询出来
外连接可以细分为:
<左外连接 : 以左侧为参照,left outer join表示 select c.name,count(o.isbn) from customers c left outer join orders o on c.id = o.customers_id group by c.name; -- >右外连接 : 以右侧为参照,right outer join表示 select c.name,count(o.isbn) from orders o right outer join customers c on c.id = o.customers_id group by c.name;
left outer join表示左边的内容都会显现出来,例如customers c left out join 表示会把customers中的某列所有内容都找出来
------------------------------------------------------
自连接:求出AA的老板是EE。把自己想象成两张表。左右各一张
select users.ename,bosss.ename from emps users inner join emps bosss on users.mgr = bosss.empno; select users.ename,bosss.ename from emps users left outer join emps bosss on users.mgr = bosss.empno;
-----------------------------------------------------------------------------------------------
演示MySQL中的函数(查询手册)
日期时间函数:
select addtime('2016-8-7 23:23:23','1:1:1'); 时间相加 select current_date(); select current_time(); select now(); select year( now() ); select month( now() ); select day( now() ); select datediff('2016-12-31',now());
字符串函数:
select charset('哈哈'); select concat('你好','哈哈','吗'); select instr('www.baidu.com','baidu'); select substring('www.baidu.com',5,3);
数学函数:
select bin(10); select floor(3.14);//比3.14小的最大整数---正3 select floor(-3.14);//比-3.14小的最大整数---负4 select ceiling(3.14);//比3.14大的最小整数---正4 select ceiling(-3.14);//比-3.14大的最小整数---负3,一定是整数值 select format(3.1415926,3);保留小数点后3位,四舍五入 select mod(10,3);//取余数 select rand();//
加密函数:
select md5('123456');
返回32位16进制数 e10adc3949ba59abbe56e057f20f883e
演示MySQL中流程控制语句
use json; drop table if exists users; create table if not exists users( id int(5) primary key auto_increment, name varchar(10) not null unique, sal int(5) ); insert into users(name,sal) values('哈哈',3000); insert into users(name,sal) values('呵呵',4000); insert into users(name,sal) values('嘻嘻',5000); insert into users(name,sal) values('笨笨',6000); insert into users(name,sal) values('明明',7000); insert into users(name,sal) values('丝丝',8000); insert into users(name,sal) values('君君',9000); insert into users(name,sal) values('赵赵',10000); insert into users(name,sal) values('无名',NULL);
将5000元(含)以上的员工标识为"高薪",否则标识为"起薪"
select name "姓名",sal "薪水", if(sal>=5000,"高薪","起薪") "描述" from users;
将薪水为NULL的员工标识为"无薪"
select name "姓名",ifnull(sal,"无薪") "薪水" from users;
将5000元(含)以上的员工标识为"高薪",否则标识为"起薪"
select name "姓名",sal "薪水", case when sal>=5000 then "高薪" else "起薪" end "描述" from users;
将7000元的员工标识为"高薪",6000元的员工标识为"中薪",5000元则标识为"起薪",否则标识为"试用薪"
select name "姓名",sal "薪水", case sal when 3000 then "低薪" when 4000 then "起薪" when 5000 then "试用薪" when 6000 then "中薪" when 7000 then "较好薪" when 8000 then "不错薪" when 9000 then "高薪" else "重薪" end "描述" from users;
以上所述是小编给大家介绍的MySQl数据库必知必会sql语句(加强版),希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对小牛知识库网站的支持!
本文向大家介绍必须会的SQL语句(六) 数据查询,包括了必须会的SQL语句(六) 数据查询的使用技巧和注意事项,需要的朋友参考一下 1.基础的查询 1)重命名列 select name as '姓名' from 表名 2)定义常量列 select 是否 ='是' from 表名 3)top用法 percent --这种写法可以获取前20%条
本文向大家介绍必须会的SQL语句(三) 数据插入,包括了必须会的SQL语句(三) 数据插入的使用技巧和注意事项,需要的朋友参考一下 1.规范一些使用插入语句的小规范 1)中文字符串前 最好 加一个N 2)列名用中括号 扩起来 像这样 [列名] 2.常规写法 Insert into tableName ( [column1] , [column2] ) values (N'中文',
本文向大家介绍必须会的SQL语句(一) 创建数据库与删除数据库,包括了必须会的SQL语句(一) 创建数据库与删除数据库的使用技巧和注意事项,需要的朋友参考一下 1.创建数据库 2.删除数据库 只能用drop drop database 名称
本文向大家介绍MYSQL必知必会读书笔记第三章之显示数据库,包括了MYSQL必知必会读书笔记第三章之显示数据库的使用技巧和注意事项,需要的朋友参考一下 MySQL是一种开放源代码的关系型数据库管理系统(RDBMS),MySQL数据库系统使用最常用的数据库管理语言--结构化查询语言(SQL)进行数据库管理。 对每一个字段返回一行,行中包含字段名,数据类型、是否允许NULL、键信息、默认值以及其他信息
本文向大家介绍必须会的SQL语句(四) 数据删除和更新,包括了必须会的SQL语句(四) 数据删除和更新的使用技巧和注意事项,需要的朋友参考一下 1.删除 1)删除记录 Delete from 表名 where id ='xx' 2)删除所有数据,并回归初始化标识字段。 Truncate table 表名 3)delete与truncate区别 a. truncate是
本文向大家介绍必须会的SQL语句(五) NULL数据处理和类型转换,包括了必须会的SQL语句(五) NULL数据处理和类型转换的使用技巧和注意事项,需要的朋友参考一下 1.Null数据的处理 1)检索出null值 select * from 表 where xx is null 2)null值替换 select name
主要内容:1 SHOW ENGINES,2 SHOW PROCESSLIST,3 SHOW STATUS LIKE ‘InnoDB_row_lock%’,4 SHOW ENGINE INNODB STATUS,5 SHOW INDEXS,6 ALTER TABLE xx ENGINE = INNODB,7 ANALYZE TABLE常见MySQL数据库优化的sql语句。 1 SHOW ENGINES 查看执行引擎以及默认引擎。 2 SHOW PROCESSLIST SHOW PROCESSLIS
本文向大家介绍MYSQL必知必会读书笔记 第一章(基础),包括了MYSQL必知必会读书笔记 第一章(基础)的使用技巧和注意事项,需要的朋友参考一下 1.1 什么是数据库 数据库(database)是一个以某种有组织的方式存储的数据集合。 保存有组织的数据的容器(通常是一个文件或一组文件) 注意:人们通常使用数据库来代表他们使用的数据库软件。其实这是不正确的,确切的说,数据库软件应该成为DBMS(数