美文网首页
Mysql常用

Mysql常用

作者: Captain_tu | 来源:发表于2017-07-31 10:51 被阅读3次
    1. 修改mysql密码
      mysql> set password for root@localhost = password('shapolang');

    2. 创建数据库指定字符
      create database IF NOT EXISTS lavue default charset utf8 collate utf8_general_ci

    3. 创建表

       create table student(
           id int not null auto_increment,
           name varchar(20) not null,
           age tinyint not null default 0,
           primary key(`id`)
       ) engine=innodb default charset=utf8;
      
       #添加字段
       alter table student add gender tinyint not null default 0 comment "0:male, 1:female";
       #修改字段
       alter table student change name name varchar(32) not null;

    相关文章

      网友评论

          本文标题:Mysql常用

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