zoukankan      html  css  js  c++  java
  • Linux相关 MySQL相关

    wget  # 后面加网址,下载文件到home下

    yum  # 源操作,install,update,remove

    cd   切换文件夹

    su  切换root用户

    sudo  用管理员权限执行

    reboot  # 重起

    ls  # 查看当前目录下所有文件,文件夹

     

     

    Mysql:8.0的命令:

    create    # 增加

    selcet    # 查看

    show    # 查看

    update    # 更新

    drop    # 放弃(删除)

    delete    # 删除

    from    # 来自

    where    # 条件

    group by    # 分组

    distinct    # 去重

    having    # 过滤  

    order by    # 排序  默认从小到大

    limit    # 显示条数

    desc table;  # 查看表结构

    show  create  table;  # 查看表结构

    执行顺序(优先级):from  where  group by  select  distinct  having  order by  limit

    validate_password.policy    # 密码强度0 or LOW,1 or MEDIUM2 or STRONG

    validate_password.length    # 密码长度,最小值为4位

    set global validate_password.policy=0;    # 设置密码强度

    set global validate_password.length=1;    # 设置密码长度(最低四位)

    select @@validate_password.policy;    # 查看密码强度级别

    select @@validate_password.length;    # 查看密码长度

    select user from mysql.user;      # 查看所有用户

    select hser, host from mysql.user;  # 查看所有用户

    drop 'username'@'password';    # 删除用户

    select version();      # 查看mysql版本

    select new();        # 查看当前日期时间

    alter table 表A名 add foreign key (在哪一列添加) references 表B名(表B被添加的列) on update cascade;    # 为表增加外键并(级联更新)

     

  • 相关阅读:
    [Javascript] Broadcaster + Operator + Listener pattern -- 3 Stop with condition
    分布式事务科普(初识篇)
    分布式事务不理解?一次给你讲清楚!
    分布式事务,有解吗?
    分布式事务精华总结篇,实打实的干货!
    常用的分布式事务解决方案介绍有多少种?
    5种分布式事务解决方案优缺点对比
    Leaf——美团点评分布式ID生成系统
    MySQL分区总结
    互联网公司为啥基本不使用mysql分区表
  • 原文地址:https://www.cnblogs.com/NoteBook3013/p/10453109.html
Copyright © 2011-2022 走看看