十一月二十五号

--自关联

--1  北京  null

--2  朝阳区 1

--3  房山区 1

--4  吉林省 null

--5  长春市 4

--6  吉林市 4

--空间换时间

--商品表

-- id name pic

--商品样式表

-- id pid style  pic

--给班级表哦增加主键

alter table my_class add primary

key(name);

--插入数据

insert into my_class values(

'python1907','B408';)

insert into my_class values(

'python1907','B407';)

insert into my_class values(

'python1907','B407';)

--冲突处理

on duplicate key update

--更新教室

room='B407';

insert into my_class values(

'python1903','B408';)

--主键冲突:替换

replace into my_class values('python1903','B406');

--复制创建表

create table my_copy like

my_class;

--删除主键

alter table my_copy drop primary

key;

--虫复制

insert into my_copy select *from

my_class;

insert into my_copy select *from

my_copy;

--更新部分B406变成A406

update my_copy set eoom ='A406'

where room ='B406' limit3;

--删除数据:限制记录数为5

deletefrom my_copy where room=

'B409' limit5;

--给学生表增加主题

aiter table my_student modify id

int primary key auto_increment;

--清空表,重置自增长

truncate my_atudent;

--以下三句有什么区别?

-- deletefrom 表名;

-- truncate表名;

-- drop table表名;

-- select选项

select *from my_copy;

selete all *from my_copy;

--去重

selete distinct *from my_copy;

--向学生表插入数据

insert into my_student

values(null,'bc20190001','张三','男'),

(null,'bc20190002','李四','男'),

(null,'bc20190003','王五','女'),

(null,'bc20190004','赵六','男'),

(null,'bc20190005','周七','男');

--字段别名

select id,

numberas 学号,

nameas 姓名,

sex性别 from my_student;

--多表数据源

select *from my_student,my_class;

--子查询

select *from (select *from

my_student)as s;

--增加age年龄和height身高字段

alter table my_student add age

tinyint unsgned;

alter table my_student add height

tinyint unsigned;

--

增加字段值:rand取得一个0-1之间的随机数,floor向下取整

update my_student set age=flooe(

rand()*20+20), height=floor(rand

()20+170),

--找学生id为1,3,5的学生

select *from my_student where id

=1 || id=3 || id=5; --逻辑判断

select *from my_student where id

in(1,3,5); -- in表示在集合中

--找出身高在180到190之间的学生

select *from my_student where

height>=180 and height<=190;

select *from my_student where

height between180 and 190;

select *from my_student where

height between190 and 180;

--不成立,相当于height>=190 and

height<=108

select *from my_student where1;

--所有条件都满足

--根据性别分组

select *from my_student group by

sex;

--

分组统计:身高高矮,平均年龄,总年龄

select sex,count(*),max(height),

min(height),avg(age),sum(age)

from my_student group by sex;

--修改id为4的记录,把年龄置办为NULL

update my_student set age=null

where id=4;

select sex,count(*),count(age),

max(height),min(height),avg(age),

sum(age)from my_student group by

sex;

--修改id为1的记录,把性别置为女

update my_student set sex='女'

where id=1;

-- nan

-- nv

select sex,count(*)count(age),

max(height),min(height),avg(age),

sum(age)from my_student group by

sex desc;

--删除班级表原主键

alter table my_class drop primary

key;

--给班级表增加主键

alter table my_class add id int

primary key auto_increment;

--给学生表增加班级ID

alter table my_student add c_id

int;

update my_student set c_id=ceil(rand()*3);

--多字段分组:先班组,后男女

select c_id,sex,count(*)from

my_student group by c_id,sex;

--多字符排序

--统计

select c_id,count(*)from

my_student group by c_id;

--回溯统计

select c_id,count(*)from

my_student group by c_idwith

rollup;

--多字符分组回溯统计

select c_id,sex,count(*),

group_concat(name)from

my_student group by c_id,sex;

--多字段排序

select c_id,sex,count(*),

group_concat(name)from

my_student group by c_id,sex;

--多字段排序

elect c_id,sex,count(*),

group_concat(name)from

my_student group by c_id,sexwith

    rollup;

--

求出所有班级人数大于等于2的学生人数

select c_id,count(*)from

my_student group by c_id having

count(*)>=2;

select c_id,count(*)from

my_student where count(*)>=2

group by c_id;  --错误

select c_id,count(*)as total

frommy_student group by c_id having

total>=2

select c_id,count(*)astotal

from my_student where count(*)>=2

group by c_id;  --错误

-- having子句进行条件查询

select nameas 名字,numberas

学号 from my_student having名字

like'张%';

--排序

select *from my_student group by

c_id; --分组,为了进行统计

select *from my_student order by

c_id; --排序

--

多字段排序:先班级排序,后性别排序

select *from my-student order by

c_id,sex desc;

--查询学生:前两个

select *from my_student limit2;

select *from my_student limit0,

2; --记录数是从0开始编号

select *from my_student limit2,

2;

select *from my_student limit4,

2;

--更改ID为班级表的第一列

alter table my_class change id id

int first;

--交叉连接

select *from my-student cross

join my_class; -- mu_student

cross join my_class是数据源

--内连接

select *from my_student inner

join my_class on my_student.c_id=

my_class.id;

select *from my_student inner

join my_class on c_id=my_class.id;

select *from my_student inner

join my_class on c_id=id; --

错误,因为两张表都有id字段

--字段和表别名

select s.*,nameas c_name, c.roomfrom my_studentas s

inner join my_classas c

on s.c_id=c_id;

--

把学生表id为5的记录的c_id设置为NULL

update my_student set c_id=null

where id=5;

-- where代替on

select s.*,c.nameas c_name,c.

room --字段别名

from my_studentas s --表别名

inner join my_classas c

where s.c_id=c_id;

--左连接

select s.*,c.nameas c_name,c.

room --字段别名

from my_studentas s

left join my_classas c --

左表为主表:最终记录数至少不少于左表己有的记录数

on s.c_id=c.id;

--右连接

select s.*,c.nameas c_name,c.

room --字段别名

from my_studentas s

height join my_classas c --

右表为主表:最终记录数至少不少于右表己有的记录数

on s.c_id=c_id;

select s.*,c.nameas c_name,c.room

--字段别名

from my_classas c

right join my_studentas s

on s.c_id=c_id;

--自然内连接

select *from my_student natural

join my_class;

--修改班级表的name字段名为c_name

alter table my_class change name

c_name varchar(20)not null;

--自然左外连接

select *from my_student natural

left join my_class;

--外连接模拟自然外连接:using

select *from my_student left

join my_class using(id;

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,029评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,395评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,570评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,535评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,650评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,850评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,006评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,747评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,207评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,536评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,683评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,342评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,964评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,772评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,004评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,401评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,566评论 2 349

推荐阅读更多精彩内容