5. Mysql基本使用(2)


--数据库操作前的准备
-- 创建数据库
-- create database python_test_1 charset=utf8;
create database python_test_1 charset=utf8;

-- 使用数据库
-- use python_test_1;
use python_test_1;

-- students表
-- create table students(
--     id int unsigned primary key auto_increment not null,
--     name varchar(20) default '',
--     age tinyint unsigned default 0,
--     height decimal(5,2),
--     gender enum('男','女','中性','保密') default '保密',
--     cls_id int unsigned default 0,
--     is_delete bit default 0
-- );

-- classes表
-- create table classes (
--     id int unsigned auto_increment primary key not null,
--     name varchar(30) not null
-- );


-- 查询练习
    -- 查询所有字段
    -- select * from 表名;
    select * from students;


    -- 查询指定字段
    -- select 列1,列2,... from 表名;
    select name, age from students;
    
    -- 使用 as 给字段起别名
    -- select 字段 as 名字.... from 表名;
    select name, age from students as "名字","年龄"

    select name as "名字",age as"年龄" from students;

    

    -- select 表名.字段 .... from 表名;

    select students.name from students;
    
    
    -- 可以通过 as 给表起别名
    -- select 别名.字段 .... from 表名 as 别名;
    select "学生表".name, "学生表".age from students as "学生表";
    
    

    -- 消除重复行(查性别)
    
    -- distinct 字段 
    select distinct(gender) from students;

    

-- 条件查询
    -- 比较运算符
        -- select .... from 表名 where .....
        -- >
        -- 查询年纪大于18岁的信息
        select * from students where age >18;

        -- <
        -- 查询年纪小于18岁的信息
        select * from students where age <18;
        

        -- >=
        -- <=
        -- 查询小于或者等于18岁的信息
        -- =
        -- 查询年龄为18岁的所有学生的名字
        select name from students where age =18;


        -- != 或者 <>
        -- 查询年龄不为18岁的所有学生的名字
        select name from students where age =18;
        

    -- 逻辑运算符
        -- and
        -- 18和28之间的所以学生信息
        select * from students where age >=18 and age <=28;


        -- 18岁以上的女性
        select * from students where age >=18 and gender = '女';

        -- or
        -- 18以上或者身高高过180(包含)以上
        select * from students where age >18 or height >180;

        -- not
        -- 不在 18岁以上的女性 这个范围内的信息
        -- select * from students where not (age>18 and gender=2);
        select * from students where not (age>18 and gender = "女");


    -- 模糊查询(where name like 要查询的数据)
        -- like 
        -- % 替换任意个
        -- _ 替换1个
        -- 查询姓名中 以 "小" 开始的名字
        select * from students where name like "小%";
        

        -- 查询姓名中 有 "小" 所有的名字
        select * from students where name like"%小%";
        

        -- 查询有2个字的名字
        select* from students where name like "__";
        


        -- 查询有3个字的名字
        select * from students where name like "___";
        

        -- 查询至少有2个字的名字
        select * from students where name like "__%";


    -- 范围查询
        -- in (1, 3, 8)表示在一个非连续的范围内
        -- 查询 年龄为18或34的姓名
        select * from students where age in (18,34);
        

        -- not in 不非连续的范围之内
        -- 年龄不是 18或34岁的信息
        select * from students where age not in (18,34);
        
        -- between ... and ...表示在一个连续的范围内
        -- 查询 年龄在18到34之间的的信息
        select * from students where age between 18 and 34;

        
        -- not between ... and ...表示不在一个连续的范围内
        -- 查询 年龄不在18到34之间的的信息
        select * from students where not (age between 18 and 34);

    -- 空判断
        -- 判空is null
        -- 查询身高为空的信息
        select * from students where height is null;


        -- 判非空is not null
        select * from students where height is not null;


-- 排序
    -- order by 字段
    -- asc
    -- asc从小到大排列,即升序
    -- desc
    -- desc从大到小排序,即降序
    -- 查询年龄在18到34岁之间的男性,按照年龄从小到大到排序
        select * from students where (age between 18 and 34) and gender = "男" order by age asc;
    


    -- 查询年龄在18到34岁之间的女性,身高从高到矮排序
        select * from students where age >=18 and age <=34 and gender = '女' order by height desc;
    

    -- order by 多个字段
    -- 查询年龄在18到34岁之间的女性,身高从高到矮排序, 如果身高相同的情况下按照年龄从小到大排序
        select * from students where age >18 and age <= 34 and gender ="女" order by height desc, age asc;
    
    -- 如果年龄也相同那么按照id从大到小排序
        select * from students where age >18 and age <= 34 and gender ="女" order by height desc, age asc,id desc;
    
    


-- 聚合函数
    -- 总数
    -- count
    -- 查询男性有多少人
    select count(*) from students where gender = "男";


    -- 最大值
    -- max
    -- 查询最大的年龄
    select max(age) from students;
    
    -- 查询女性的最高 身高
    select max(height) from students where gender = "女";


    -- 最小值
    -- min
    select max(height) from students where gender = "男";


    -- 求和
    -- sum
    -- 计算所有人的年龄总和
    select sum(age) from students;
    
    -- 平均值
    -- avg
    -- 计算平均年龄
    select avg(age) from students;
    


    -- 计算平均年龄 sum(age)/count(*)
    select sum(age)/count(*) from students;
    


    -- 四舍五入 round(123.23 , 1) 保留1位小数
    -- 计算所有人的平均年龄,保留2位小数
    select round(avg(age),2) from students;


    -- 计算男性的平均身高 保留2位小数
    select round(avg(age),2) from students where gender = '男';
    


-- 分组

    -- group by
    -- 按照性别分组,查询所有的性别
    select gender from students group by gender;



    -- 计算每种性别中的人数
    select count(*) from students group by gender;


    -- group_concat(...)
    -- 查询同种性别中的姓名
    select group_concat(name) from students group by gender;


    
    -- 查询每组性别的平均年龄
    select avg(age) from students group by gender;


    -- having(注意having和group by 连用 having后通常也要跟 聚合函数)
    -- 查询平均年龄超过30岁的性别,以及姓名
    select name, gender from students group by age having age >30;

    
    -- 查询每种性别中的人数多于2个的信息
    select * from students group by gender having count(gender)>2;



    -- with rollup 汇总的作用(了解)
    --select gender,count(*) from students group by gender with rollup;
    select gender, count(*) from students group by gender with rollup;



-- 分页
    -- limit start, count
    -- limit 放在最后面(注意)
    
    -- 限制查询出来的数据个数
    -- 查询前5个数据


    -- 每页显示2个,第1个页面
    select * from students limit 0, 2;

    -- 每页显示2个,第2个页面
    select * from students limit 2, 2;
    -- 每页显示2个,第3个页面
    select * from students limit 4, 2;
    -- 每页显示2个,第4个页面
    select * from students limit 6, 2;

    -- 每页显示2个,显示第6页的信息, 按照年龄从小到大排序
    select * from students order by age asc limit 6, 2;

    
    
     


-- 连接查询
    -- inner join ... on
    -- select ... from 表A inner join 表B;
    -- 查询 有能够对应班级的学生以及班级信息
    


    -- 按照要求显示姓名、班级


    -- 给数据表起名字


    -- 查询 有能够对应班级的学生以及班级信息,显示学生的所有信息 students.*,只显示班级名称 classes.name.

    
    -- 在以上的查询中,将班级名显示在第1列


    -- 查询 有能够对应班级的学生以及班级信息, 按照班级名进行排序
    

    
    
    -- 当时同一个班级的时候,按照学生的id进行从小到大排序
    



    -- left join
    -- 查询每位学生对应的班级信息
    


    -- 查询没有对应班级信息的学生


    
    -- right join   on
    -- 将数据表名字互换位置,用left join完成



    

-- 子查询
    -- 标量子查询: 子查询返回的结果是一个数据(一行一列)
    -- 列子查询: 返回的结果是一列(一列多行)
    -- 行子查询: 返回的结果是一行(一行多列)
    
    -- 查询出高于平均身高的信息(height)



    -- 查询学生的班级号能够对应的 学生名字

    
    --数据操作前的准备
    --创建数据库表
    -- create table areas(
 --    aid int primary key,
 --    atitle varchar(20),
 --    pid int
    -- );
    --从sql文件中导入数据
    -- source 具体地址/areas.sql;

    
    --查询一共有多少个省

    --例1:查询省的名称为“山西省”的所有城市
    

    --例2:查询市的名称为“广州市”的所有区县
    



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

推荐阅读更多精彩内容