mysql常用命令
1. 建立資料庫
create database name;
2. 選擇資料庫
use databasename;
3. 刪除資料庫
drop database name;
drop database if exists name;
4. 顯示資料庫中的表
show tables;
5. 顯示表頭
desc tablename;
6. select去除重複字段
select distinct colname from tablename;
7. 刪除表
drop table tablename;
8. 將表中的資料清空
delete from tablename;
9. 顯示表中的記錄
select * from tablename;
10. 建表
create table tablename
(id int(3) auto_increment not null primary key,
name char(10) not null,
address varchar(50) default 'shenzhen',
year date
);11. 插入資料
insert into tablename values('', 'test', 'test', '2000-01-01');
insert into tablename(name, address, year) values('test', 'test', '2000-01-01');
12. 建立乙個超級使用者
mysql> grant all privileges on *.* to user@localhost identified by 'password' with grant option;
13. 增加新使用者
mysql> grant select on database.* to username@host identified by "password";
example:
mysql> grant all privileges on *.* to test@localhost identified by 'test' with grant option;
mysql> grant all privileges on *.* to test@"%" identified by 'test' with grant option;
14. 刪除授權
mysql> revoke all privileges on *.* from root@"%";
mysql> delete from user where user="root" and host="%";
mysql> flush privileges;
15. 建立乙個custom在特定的客戶端登陸,可訪問特定資料庫test
mysql> grant select, insert, update, delete, create, drop on test.* to [email protected] identified by 'password';
16. 重新命名表
mysql> alter table t1 rename t2;
17. 備份資料庫
bash# mysqldump -h host -u root -p dbname > dbname_backup.sql
18. 恢復資料庫
bash# mysqladmin -h myhost -u root -p create dbname
mysql基本常用命令 MySQL常用命令(一)
cmd提示框中的mysql基礎命令 一 命令 連線mysql伺服器 mysql h localhost u root p 展示所有資料庫 show databases 選擇資料庫 use database 展示所選資料下所有表 show tables 設定資料庫編碼 set names gbk 用s...
mysql巡檢常用命令 mysql 常用命令
客戶端連線 進入命令列,windows cmd,連線 mysql u 使用者名稱 p密碼 h 伺服器ip位址 p 伺服器端mysql埠號 d 資料庫名 注意 1 伺服器端口標誌 p一定要大些以區別於使用者 p,如果直接連線資料庫標誌 d也要大寫 2 如果要直接輸入密碼 p後面不能留有空格如 pmyp...
mysql常用命令總結 mySql常用命令總結
總結一下自己常用的mysql資料庫的常用命令 mysql u root p 進入mysql bin目錄後執行,回車後輸入密碼連線。資料庫操作 1 create database dbname 建立資料庫,資料庫名為dbname 2 create database todo default chara...