MySQL相关文章索引(7)

环境部署

1.CentOS 7.4下使用yum安装MySQL5.7.20 最简单的
2.Navicat for MySQL 64位破解版

基本常识

1.一条insert语句批量插入多条记录

insert into persons 

(id_p, lastname , firstName, city )

values

(200,'haha' , 'deng' , 'shenzhen'),

(201,'haha2' , 'deng' , 'GD'),

(202,'haha3' , 'deng' , 'Beijing');
  1. mySQL中replace的用法
  2. 多个连续的left join连接顺序验证
  3. MySQL命令行中给表添加一个字段(字段名、是否为空、默认值)
    alter table test add column birth date;
  4. 在mysql中修改表名的sql语句
    ALTER TABLE table_name RENAME TO new_table_name
  5. mysql增加列,修改列名、列属性,删除列语句

Debug

  1. Mysql 5.7 忘记root密码或重置密码的详细方法
    update user set authentication_string=password('123456') where user='root';
  2. mac mysql error You must reset your password using ALTER USER statement before executing this statement.
  3. ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

实战演练

sql 查找入职员工时间排名倒数第三(查找某一列特定排名)

    原文作者:司小幽
    原文地址: https://www.jianshu.com/p/556d04967a7b
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞