mysql常用命令

2021-07-05 14:26:45 字數 1490 閱讀 7030

1. 遠端登入mysql伺服器:

[html]view plain

copy

mysql -u使用者名稱 -p -hip位址 -p埠號  

然後輸入密碼, 即可登入到遠端伺服器

2. 顯示/檢視資料庫

[html]view plain

copy

show databases;  

3. 選擇資料庫

[html]view plain

copy

use 資料庫名;  

4. 顯示/檢視資料表

[html]view plain

copy

show tables;  

5. 檢視具體表結構

[html]view plain

copy

describe 具體表名;  

6. 事務提交sql

[sql]view plain

copy

start 

transaction

;  insert

into

table

values

("aa"

,"text"

,"0"

,"2015-07-23 10:41:57"

,"2015-07-23 10:41:57"

);  

insert

into

table

values

("bb"

,"text"

,"100"

,"2015-07-23 10:41:57"

,"2015-07-23 10:41:57"

);  

commit

;  

7. 修改字段大小

[sql]view plain

copy

alter

table

table_name 

modify

column

欄位名 

varchar

(255);  

8. 增加字段

[sql]view plain

copy

alter

table

table_name 

addfield_name field_type 

default

default_value;  

9. 檢視索引

[sql]view plain

copy

show 

index

from

table_name;  

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...