MySQL常用命令

使用grant和revoke给予权限和撤销权

mysql> grant select

on *Happiness

to user identified by '123456'

with grant option;

创建MySQL用户

mysql> insert into mysql.user(Host,User,Password) values('localhost','hibo',password('hibo'));

1.查看用户的所有权限:

mysql >show grants for hibo@‘%’;

2.给予部分权限

grant select on Happiness.* to user identified by '123456' with grant option;

mysql> grant all privileges on *.* to 'root'@112.74.164.165 identified by 'yahibo' with grant option;   (*.* 指所有数据库)

3.回收权限(不包含赋权权限)

revoke all privileges on *.*from user;

4.收回赋权权限

Revoke grant option on *.* from user;

5.重新载入权限表

flush privileges;

6.删除用户

需选择数据库

delete from user where User='user' and host=‘localhost’;

从数据库中删除

drop user user@'%';

数据库操作相关命令

1、创建数据库: create database yahibo;

2、删除数据:drop database yahibo;

3、查看所有数据库:show databases;

4、选择数据库:use yahibo;

5、创建数据库表:

create table table_name (column_name column_type);

create table userTable(

id INT NOT NULL AUTO_INCREMENT,

userName

);

create table userTable(

id INT(20) NOT NULL AUTO_INCREMENT PRIMARY KEY,

account char(20) NOT NULL,password char(20) NOT NULL

);

6、插入一条数据:Insert into tableName(username,password) values('hibo',’123456’);

7、删除所有数据:

delete from usertable;

truncate table usertable;    清空数据表id从1开始

8.查询数据

select * from usertable where id=‘1’ and name=‘hibo’;

9、增加一个字段:

alter table userTable add 'nickname' varchar(100) not null default "" after password;

ALTER TABLE userTable DROP score;//删除一个字段

10、修改字段属性:alter table userTable modify nickname char(100) default '';

11、设置数据库编码:alter database mydb character set utf8;

12、查看所有字段结构:

mysql> show full columns from bsh_find;//查看所有字段结构

mysql>show variables like '%char%’;//查看编码格式

13、显示表结构,字段类型,主键,是否为空等属性,但不显示外键。

desc table_name

修改数据库密码

# mysql -utest -p//登录数据库输入密码进入数据库

mysql>use test;//选择使用数据库

mysql>update user set password=password('新密码')where user='test';

mysql>flush privileges;

数据库启动方式:mysql.server start ,  service mysql start

mysqldump

phpmyadmin使用:将phpmyadmin文件放入服务器。进入 phpmyadmin 文件找到config.inc.php文件 将$cfg['Servers'][$i]['host'] = '127.0.0.1';修改服务器IP后即可访问。

数据库备份:mysqldump -uroot -p ios_cms > hibo.sql

数据库迁移:将备份后的数据库文件放在指定服务器上,通过mysql命令进入数据库 执行 mysql> source temp.sql

你可能感兴趣的:(MySQL常用命令)