数据库命令: 进入 mysql 库; use mysql; 查看用户权限 select * from user where user='root' \G; 创建数据库 create database 数据库名; 查看当前创建的数据库 show create database 数据库名; 查看所有数据库 show databases; 修改数据库 alter database 库名 charset gbk; 删除数据库 drop database 库名; 创建表 create table 表名(i…
用户与权限 创建用户 mysql>create user test identified by 'BaC321@#'; 修改密码 ##5.5版本及以前的命令 mysql>set password for test=passowrd('!1A@2#3'); ##5.6及以上命令 mysql>update mysql.user set authentication_string=password('A1b2c3#!@') where user='test'; 创建用户并授权 mysql>…
删除一个表: drop table if exists 表名; 在表中插入行: Insert into 表名 values(, , ,) 创建表: Create table 表名( Id int(10) primary key auto_increment, // auto_increment自增的意思 Name varchar(10), Age int unsigned, Height decimal(5,2)) 删除行: Delete from 表名 wher…