資料庫一些常用的指令

2021-10-23 13:00:27 字數 1896 閱讀 5937

1.show databases; 顯示所有的庫

2.use mysql; 切換到mysql庫

3.show tables;顯示所有的表

4.建表語句:

create table tb_a(aid int,aname varchar(10));

5.插入語句:insert into tb_a values檢視表資料:

select * from tb_a;

6…連線資料庫

本機資料庫:mysql -hlocalhost -uroot -p

mysql -h127.0.0.1 -uroot -p

遠端資料庫:mysql -h192.168.89.30 -uroot -p

7.:對庫的操作:

檢視資料庫:show databases;

建立資料庫:create database +庫名

刪除資料庫:drop database +庫名

8…對錶的操作:

建立表:create table if not exists +表名(

內容);

檢視建表語句: show create table+表名

檢視表結構:desc/describe +表名

刪除表語句 drop table if exists+表名

select * from

9.select * from+表名 查詢庫中的表名

10.自己建立表的順序

service mysql start

mysql -uroot -pok

create database if not exists +表名

建立表:create table if not exists +表名(

內容);

檢視建表語句: show create table+表名

檢視表結構:desc/describe +表名

刪除表語句 drop table if exists+表名;

select * from

11.檢視資料庫的定義

show create database +庫名;

檢視表的定義

show create table +表名;

檢視表的結構

desc +表名

12.設定嚴格檢查模式

set sql_mode=『strict_trans_tables』;

13.檢視mysql所支援的引擎型別(表型別)

show engines;

14.檢視預設引擎

show variables like 『storage_engine』;

15.重新命名表

alter table +原表名+rename as +新錶名

16.新增字段

alter table +表名 add 欄位名 列型別(屬性)

17.修改字段

alter table 表名 modify 欄位名 列型別【屬性】

alter table 表名 change 舊欄位名 新欄位名 列型別

18.刪除字段

alter table 表名 drop 欄位名;

19.刪除表

drop table if exists +表名;

20…建立外來鍵

constraint fk foreign key 指定外來鍵 references 表名(指定內建)//references是引用的意思

21…刪除外來鍵

alter table +表名+drop foreign key +外鍵名字

alter table +表名 drop index +外鍵名;

一些git常用指令

cd e androidsss 具體進入到那個碟符 git init 生成.git資料夾 在當前目錄新建乙個git 庫 git status 檢視狀態裡面有幾個檔案 git commit am 提交到遠端伺服器 加備註 遇到的問題 git config global user.email 18513...

llvm clang esl 一些常用指令

1 clang emit llvm c test.c 2 llvm link x.bc y.bc z.bc o final.bc 3 llvm dis x.bc im x.bc 多級指標 stl 類 lli hw.ll gdb home zhgu workspace llvm 6.0.0 build...

常用的一些Linux指令

常用指令 ls 顯示檔案或目錄 l 列出檔案詳細資訊l list a 列出當前目錄下所有檔案及目錄,包括隱藏的a all mkdir 建立目錄 p 建立目錄,若無父目錄,則建立p parent cd 切換目錄 touch 建立空檔案 echo 建立帶有內容的檔案。cat 檢視檔案內容 cp 拷貝 m...