MySql工作中的常用命令

2021-10-09 01:45:05 字數 1694 閱讀 5778

-- 登入資料庫

mysql -h127.

0.0.1

-p3306 -uroot -p;

--檢視所有資料庫

show

databases

;--建立資料庫

create

database test;

--刪除資料庫

drop

database test;

--使用資料庫

use test;

--檢視所有的表

show

tables

;--建立表

create

table test(id int

, name varchar(10

), age int

,primary

key(id)

,unique

(name)

,key index_age(age));

--刪除乙個存在的表

drop

table

if exist test;

--修改表的名稱

alter

table test rename test_1;

rename

table test to test_1;

--檢視表結構

desc test;

--檢視表的建立語句

show

create

table test;

--新增字段

alter

table test add c varchar(2

)default

''comment

'測試'

after a;

--刪除字段

alter

table test drop c;

--修改欄位名稱和屬性

alter

table test change c d varchar(30

);--只修改字段屬性

alter

table test modify d varchar(50

);

--新增主鍵索引

alter

table test add

primary

key(id)

;--刪除主鍵索引

alter

table test drop

primary

key;

--新增唯一鍵(帶鍵名稱)

alter

table test add

unique uk_name (name)

;----新增唯一鍵(不帶鍵名稱)

alter

table test add

unique

(name)

;--建立普通索引

alter

table test add

index a_index (a)

;--建立聯合索引

alter

table test add

index a_b_index (a,b)

;--刪除索引

drop

index a_index on test;

工作中git常用命令

git配置使用者名稱和郵。如果不同使用者 不同專案配置時可以不加global。git config global user.name name git config global user.email xx gmail.com 直接在本地初始化倉庫。進入專案目錄 git init從遠端倉庫轉殖 ss...

工作中必備的Linux常用命令

作為it人員,linux系統也是必備技能之一,也是面試時常被問到的乙個技術點,現在很多企業的伺服器都是用的linux系統,為什麼企業伺服器都用linux呢,主要是開源免費,穩定性好,安全性高,靈活輕便,選擇多,成本低 bin 存放二進位制可執行檔案 ls,cat,mkdir 基礎系統所需要的命令位於...

git 工作中常用命令

1.刪除本地分支 git branch d branchname 2.將本地分支推到遠端倉庫,並在遠端倉庫建立新的分支 git push origin localbranch romotebranch 3.合併兩個分支 先切換到目標分支targetbranch,再進行merge操作 git chec...