美文网首页
mysql常用命令

mysql常用命令

作者: 6bfafb73d1d7 | 来源:发表于2018-09-17 18:27 被阅读0次

    基本流程

    • 连接MySQL
    • 选择数据库
    • 执行SQL语句
    • 退出关闭

    1. 连接mysql

    mysql -u root -p

    2. 数据库操作

      2.1 选择数据库

        `use <database name>;`
    

      2.2 打印函数值

      SELECT NOW(),CURDATE(),CURTIME()

    3. 常用语句

    以下操作,均是在mysql命令行下执行
    执行语句前一定先选择数据库!!!

    3.1 数据库操作

    • 查看数据库编码格式
      show variables like 'character_set_database';

    • 修改默认密码
      alter user 'root'@'localhost' identified by 'youpassword';

    • 创建数据库
      create database <table name>;

    • 查询数据库里的表象
      show tables;

    • 查看当前使用的数据库
      select database();

    • 导出数据库
      mysqldump -uroot -p <database name> > export.sql
      输入数据库登录密码即可

    • 导入数据

    #创建数据库
    >create database <databases>;
    >use <databases> ;
    >set names utf8;
    >source /Users/export.sql
    

    3.2 表操作

    • 创建表结构
      create table t_playerinfo(unique_id varchar(64), uid varchar(64), nick_name varchar(64), avator_url varchar(255), room_card int);

    • 查询数据表
      select * from <table name>;

    • 查询表结构
      describe t_palyerinfo;

    • 查询表内容
      select * from <table name>;

    • 插入数据
      insert into <table name>(<seg name>) value ('10000');

    • 全部某个字段
      insert into <table name>(<seg name>) value ('10000');

    • 删除数据 (清空表)
      DELETE FROM <table name>;
      truncate

    • 删除数据表
      DROP TABLE <table_name> ;

    • 创建表结构后再设置主键
      alter table <table name> add primary key(<colum name>);

    • 创建表结构后再添加字段
      alter table <table name> add <colum name> <colum type>;

    • 更改表主键

        describe t_playerinfo;   
        alter table t_playerinfo drop primary key;
        describe t_playerinfo;
        alter table t_playerinfo add primary key (unique_id);
        describe t_playerinfo;
      
      • 为主键添加自增属性
        alter table <table name> change <column> <column> int unsigned auto_increment primary key;

    操作表之前先使用use

    use <table name>;

    定时任务

      推荐下面的这篇帖子,写的很漂亮
    https://jiyiren.github.io/2016/03/27/Mysql_schedule/#comments

    补充一下删除事件
    DROP EVENT [IF EXISTS] event_name 
    

    Q & A

    mysql workbench

    今日用MySQL Workbench进行数据库的管理更新时,执行一个更新的语句碰到以下错误提示:
    Error Code: 1175 You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column

    • 原因
      进过一番搜索之后发现原来是MySQL Workbench的安全设置。当要执行的SQL语句是进行批量更新或者删除的时候就会提示这个错误。
    • 解决方法
      打开Workbench的菜单[Edit]->[Preferences...]切换到[SQL Editor]页面把[Forbid UPDATE and DELETE statements without a WHERE clause (safe updates)]之前的对勾去掉点击[OK]按钮最后一步记得要重启一下Workbench,否则你仍然会得到这个错误提示。

    相关文章

      网友评论

          本文标题:mysql常用命令

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