雖然很多人用mysql front, 但是個人覺得mysql還是命令列下比較好用,畢竟資料庫在命令列下操作比較王道而且mysql完全免費。。
下面介紹一些mysql命令列下常用的命令,有一些資料庫基礎的,即使是第一次用mysql對照下面的命令操作也完全可以,如果我發現還有其它命令也是經常用到的我會陸續更新。。。
伺服器:
1. 啟動mysql服務
> cd mysql-5.0/bin
> mysqld --console --verbose
2. 停止mysql服務
> mysqladmin -u root shutdown
客戶端:
1. 客戶端連線至mysql
> mysql -h localhost -u root -p
2. 顯示當前所有資料庫
> show databases;
3. 建立資料庫
> create database test;
4. 刪除資料庫
> drop database test;
5. 切換資料庫
> use test;
6. 顯示當前資料庫中的所有表
> show tables;
7. 顯示某張表的結構資訊
> desc t_some_table;
8. 客戶端推出
> exit;
使用者:1. 查詢所有使用者
> select host, user from mysql.user;
2. 建立使用者(使用者名稱:test;密碼:test)
> create user test identified by 'test';
3. 賦予使用者許可權
> grant all privileges on test.* to 'test'@'%' ;
4. 刪除使用者
> drop user test;
備份與恢復:
1. 備份資料庫(後面不能加分號";",否則會報error 1049)
> mysqldump -u root -p test>d:/test_backup.sql
2. 恢復資料庫
> mysql -uroot -p test< d:/test_backup.sql;
下面給出乙個建表語句 可以給初學資料庫的人做乙個參考
mysql> create table comment (
-> comid int auto_increment primary key,
-> comtitle text not null,
-> comcontent text not null,
-> writername varchar(20),
-> artid int not null,
-> foreign key comment(artid) references article(artid)
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...