SQL语句

作者: 半夜一更 | 来源:发表于2021-03-21 19:52 被阅读0次
    数据库的增删改查
    /usr/local/mysql/bin/mysql -u root -p;      -- root                   -- 本地登陆
    /usr/local/mysql/bin/mysql  -h $ip -u $name -p;    -- password         -- 远程登录
    exit;                                                                -- 退出
    
    creat database $name;    -- 新建数据库
    drop database $name;     -- 删除数据库
    use $name;               -- 指定操作数据库
    show databases;          -- 看当前数据库
    
    数据表的增删改查
    -- 创建数据表
    creat table $name(
      $字段一 数值类型 primary key auto_increment,       --(单字段)主键约束; auto_increment自动增长键
      /primary key(字段一,字段二),                      --(多字段)主键约束
      $字段二 数值类型 not null,                         --非空约束
      $字段三 数值类型 unique,                           --唯一值约束
      $字段四 数值类型 default $默认值,                   --默认约束
      foreign key(从表某个字段) references $主表name     --外键约束
    );     
    
    -- 删除数据表
    drop table $name; 
    
    -- 数据表结构修改
    --**************** 修改表名
    alter table $旧表名 rename $新表名;
    --**************** 修改字段数据类型
    alter table $表名 modify 字段名 新字段类型 after XXX;   # 指定位置在XXX后一列
    --**************** 修改字段名及数据类型
    alter table $表名 change 旧字段名 新字段名 字段类型;
    --**************** 添加一个新的字段 (一般在设计时留出一些多的列,后期直接修改即可,不建议直接添加列)
    alter table $表名 add 字段名 字段类型 约束;
    --**************** 删除列
    alter table $表名 drop 字段名;
    --**************** 删除、增加外键 (数据库迁移) 
    alter table $从表 drop foreign key [外键名称];
    alter table $从表 add constraint [外键名称] foreign key (从表外键字段名) references $主表 (主表的主键);
    
    -- 查看数据表
    --**************** 查看当前数据库中的数据表
    show tables;
    --**************** 查看数据表结构
    desc $table_name;
    --**************** 查看创建表的语句
    show creat table $name\G;
    
    表内记录的增删改查
    -- 增加记录
    --**************** 插入一条
    insert into $表名 values(字段值列表);    
    --**************** 批量插入记录(mysql)
    insert into $表名 values (字段值列表),(字段值列表),(字段值列表);
    --**************** 查询记录另存为新表
    insert into $新表名 select 字段列表 from $旧表名;   -- 查询结果插入另一张表
    creat table $新表名 select 字段列表 from $旧表名;   -- 查询结果插入新表,可用于减少字段存储
    --**************** 加载外部数据文件  (1.中文需要修改为UTF-8编码;2.不指定‘fields terminated’时默认分隔符是tab)
    load data local infile 'd:/p.csv' into table $表名 fields terminated by ',' ignore 1 lines;
    
    -- 删除记录
    delete from $表名 where 条件;
    delete from employees where id=101;    -- 示例
    
    -- 修改表中数据(条件语句中,对于空值,需要使用is null;非空值使用is nit null。)
    update $name set 修改字段1=修改表达式,修改字段2=修改值 where 条件;
    updata employees set salary=salary*1.1 where salary<5000;    -- 示例
    
    -- 单表查询
    --**************** 简单查询
    select 字段列表('*'代表所有字段) from $表名;
    --**************** 条件查询
    select 字段列表('*'代表所有字段) from $表名 where 条件;  
    --------- 区间匹配 (离散型变量)in, not in; (连续型变量)between  and  , not between  and 。
    --------- 模糊匹配 like: 通配符'%'匹配任意长度的字符(b%:b开头;%b%:含有b;%b:b结尾;);通配符'_'匹配一个字符。
    --------- 正则表达式 regexp :'^a'a开头,'a$'a结尾,'a'含a,'.'任意字符,'*'前面字符重复任意个,'+'前面字符重复至少一次。
    --**************** 查询去重
    select distinct 字段 from $表名 where 条件;
    ---------- 统计某字段去重后的数量
    select count(distinct 字段) as [字段数量命名] from $表名 where 条件;
    --**************** 查询排序(asc升序[默认];desc 降序)
    select distinct 字段 from $表名 where 条件 order by 排序字段列表;
    --**************** 查询分组统计数量
    select 分组字段, count(*) [字段数量命名] from $表名 group by 分组字段;
    select 分组字段, count(*) [字段数量命名] group_concat(组内成员字段) [字段成员命名]  from $表名 group by 分组字段;
    --**************** 查询分组统计数量排序
    select 分组字段, count(*) [字段数量命名] group_concat(组内成员字段) [字段成员命名]  from $表名 group by 分组字段 order by count(*)/[字段数量命名];
    --**************** 查询分组统计数量过滤
    select 分组字段, count(*) [字段数量命名] group_concat(组内成员字段) [字段成员命名]  from $表名 group by 分组字段 having count(*)/[字段数量命名]>30;
    --**************** 查询分组统计数量,汇总
    select 分组字段, count(*) [字段数量命名] group_concat(组内成员字段) [字段成员命名]  from $表名 group by 分组字段 with rollup ;
    --**************** 限制返回数量 偏移量默认0
    select 字段列表('*'代表所有字段) from $表名 limit 偏移量 行数量;
    --**************** 索引
    creat index $index_name on $表名(创建索引的字段);      -- 创建
    show inde from $表名;                               -- 查看
    drop index $index_name on $表名                     -- 删除
    
    --多表查询 左小右大
    --**************** 内连接(inner join) 当字段列表中存在两张表中相同的字段,需要在前面加上'表名.'。
    select 字段列表 from $表一 join $表二 on $表一连接字段=$表二连接字段 where 条件;
    select id, name, main.p_id, salary from main join product on main.p_id=product.p_id where p_id='XXX';      -- 示例
    --**************** 外连接 左外连接(left outer join,左边表全显示)/右外连接(right outer join,右边表全显示)
    select 字段列表 from $表一 left/right join $表二 on $表一连接字段=$表二连接字段;
    

    相关文章

      网友评论

          本文标题:SQL语句

          本文链接:https://www.haomeiwen.com/subject/lvsocltx.html