建立資料庫
create database abc
;
顯示資料庫
show databases
;
使用資料庫
use 資料庫名
;
直接開啟資料庫
mysql -h localhost -u root -p123456 -d 資料庫名
伺服器上上傳檔案和下載檔案
- 上傳
rz
- 下載
sz
檔名
匯出資料庫
直接使用命令:
mysqldump -u root -p abc >abc.sql
然後回車輸入密碼就可以了;
mysqldump -u
資料庫連結使用者名稱 -p
目標資料庫 >
儲存的檔名
檔案會匯出到當前目錄下
匯入資料庫(sql檔案)
mysql -u
使用者名稱 -p
資料庫名 <
資料庫名.sql
mysql -u abc -p abc < abc.sql
這裡的abc即為資料表名稱
注意sql檔案必須在當前目錄下,如果不在當前目錄下需要在< 之後加上具體sql檔案路徑
執行sql檔案 source
+檔案路徑
source /var/ftp/pub/sogoodsoft.sql;
顯示錶
show tables;
desc 表名
;show columns from 表名
;describe 表名
;show create table 表名
;use information_schema
select * from columns where table_name=`表名`
;