1.連線mysql
格式:mysql -p主機ip位址 -u使用者名稱 -p密碼
2.修改密碼
格式:mysqladmin -u使用者名稱 -p舊密碼 password 新密碼
3.建立資料庫
格式:create
database
《資料庫名》
4.顯示資料庫
mysql>
show
databases
;5.刪除資料庫
mysql>
drop
database
《資料庫名》
;6.連線資料庫
mysql>
use《資料庫名》;
database changed
7.建表
1)格式:create
table
《表名》
(《欄位名》
《型別》[,
..《欄位名n>
《型別n>])
; mysql>
create
table myclass(
> id int(4
)not
null
primary
keyauto_increment
,> name char(20
)not
null
,> *** int(4
)not
null
,> degree double(16
,2))
;2)轉殖表:
格式:create
table 新錶 like 舊表;
8.獲取表結構
mysql>
desc
《表名》
;mysql>
show
columns
from
《表名》
;9.刪表
mysql>
drop
table
《表名》
;10.插入資料
命令:insert
into
《表名》[(
《欄位名》[,
..《欄位名n >])
]values
( 值 )[,
( 值n )
]11.查詢表中的資料
1)查詢所有行
命令:select
《字段,字段,…>
from
< 表名 >
where
< 表示式 >
2)查詢部分資料
mysql>
select
*from
《表名》
order
by id limit0,
2;//檢索記錄行1到2
12.刪除表中的資料
格式:delete
from 表名 where 表示式
13.修改表中的資料
格式:update 表名 set 字段=新值,…where 條件
14.增加字段
格式:alter
table 表名 add欄位 型別 其他;
15.更改表名:
命令:rename
table 原表名 to 新錶
16.備份資料庫
#1.匯出整個資料庫
匯出檔案預設是存在mysql\bin目錄下
mysqldump -u 使用者名稱 -p 資料庫名 > 匯出的檔名
#2.匯出乙個表
mysqldump -u 使用者名稱 -p 資料庫名 表名》 匯出的檔名
#3.匯出乙個資料庫結構
mysqldump -u user_name -p -d –add
-drop
-table database_name > outfile_name.
sql-d 沒有資料 –add
-drop
-table 在每個create語句之前增加乙個drop
table
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...