在日常的網站維護和管理中,會用到非常多的 SQL 語句,
熟練使用對網站管理有很多好處,尤其是站群管理的時候。
下面列一些常用的命令做備記。
1 、顯示資料庫 
show databases
顯示錶
show tables;
 2 、建立使用者 
建立 root 使用者密碼為 123

use mysql;
grant all on *.* to root@’%’ identified by ‘123’ with grant option;
commit;

 3 、修改密碼 

grant all on *.* to xing@’localhost’ identified by ‘123456’ with grant option;
update user set password = password(‘newpwd’) where user = ‘xing’ and host=’localhost’;
flush privileges;

 4 、建立資料庫 testdb:

create database testdb;

 5 、預防性建立資料庫: 

create database if not testdb;

 6 、建立表: 

use testdb;
create table table1(
username varchar(12),
password varchar(20));

 7 、預防性建立表 aaa: 

create table if not exists aaa(ss varchar(20));

 8 、檢視表結構: 

describe table1;

 9 、插入資料到表 table1: 

insert into table1(username,password) values
(‘leizhimin’,’lavasoft’),
(‘hellokitty’,’hahhahah’);
commit;

 10 、查詢表 table1: 

select * from table1;

 11 、更改資料:

update table1 set password=’hehe’ where username=’hellokitty’;
commit;

 12 、刪除資料: 

delete from table1 where username=’hellokitty’;
commit;

13 、給表新增一列: 

alter table table1 add column(
sex varchar(2) comment ‘ 性別’,
age date not null comment ‘ 年齡’
);
commit;

14 、修改表結構
從查詢建立一個表 table1:

create table tmp as
select * from table1;

15 、刪除表 table1: 

drop table if exists table1;
drop table if exists tmp;

16 、備份資料庫 testdb 

mysqldump -h 192.168.3.143 -u root -p pwd -x –default-character-set=gbk >C:testdb.sql

17 、刪除資料庫 testdb 

drop database testdb;

18 、恢復 testdb 資料庫 
首先先建立 testdb 資料庫,然後用下面命令進行本地恢復

mysql -u root -pleizhimin testdb