初識MySQL的命令語句

2021-08-20 17:23:48 字數 1745 閱讀 8615

運算元據庫語句命令:

(1).

建立資料庫命令

create database 資料庫名;
(2).

檢視資料庫列表命令

show database;
(3).

切換資料庫命令

use 資料庫名;
(4).

刪除資料庫語句

drop database 資料庫名;
(5).

建立表語法

(內的屬性是選用的

,可以寫

,也可以不寫

)

create table [if not exists] 表名(

欄位名1 資料型別 [字段屬性或約束] [索引] [注釋],

欄位名2 資料型別 [字段屬性或約束] [索引] [注釋],

...........

)[表型別] [表字符集] [注釋];

(6).

單字段主鍵命令:

在定義欄位的同時指定主鍵的命令

:

create table [if not exists] 表名(

欄位名1 資料型別 primary key,

........

);

在定義完所有字段之後指定主鍵的命令

:

create table [if not exists] 表名(

欄位名1 資料型別,

..........

[constraint《約束名》] primary key[列名]

);

(7).

多欄位聯合主鍵命令:

主鍵由多個字段組成

:

create table [if not exists] 表名(

欄位1 資料型別,

欄位2 資料型別,

........

primary key(欄位1,欄位2)

);

(8).

注釋命令

:

create table test(

`id` int(4) unsigned comment 『編號』

)comment 『測試表』

(9).

設定編碼格式

:

create table [if not exists] 表名(

..........

)charset=字符集名;

(10).

檢視表命令

:

show 表名;
(11).

檢視表定義

describe 表名;

desc 表名;

(12).

刪除表命令

:

drop table 表名;
(13).

檢視當前的預設儲存引擎

:

show variables like 『storage_engine%』;
(14).

指定表的儲存引擎

:

create table [if not exists] 表名(

..........

)engine=儲存引擎;

初識MySQL初識MySQL語句

什麼是資料庫?資料庫管理系統 資料庫管理員 資料庫伺服器 什麼是表?資料 記錄 mysql select user 檢視當前使用者 mysql exit 也可以用 q quit退出 預設使用者登陸之後並沒有實際操作的許可權 需要使用管理員root使用者登陸 mysql uroot p mysql5....

mysql基礎語句初識(1)

select from news where id mg union select 1,2 前面為空,讓他顯示後面驗證是不是兩列 23 3 union select 255,1 mg union select 233,group concat schema name from information...

04 Mysql 初識sql語句

create database db1 charset utf8 檢視當前建立的資料庫 show create database db1 檢視所有的資料庫 show databases alter database db1 charset gbk drop database db1 use db1 ...