MySQL 05 資料型別

2021-08-21 10:11:04 字數 1037 閱讀 8679

型別

大小(位元組)

用途tinyint

1小整數值

smallint

2大整數值

mediumint

3大整數值

int4

大整數值

bigint

8極大整數值

float

4單精度浮點數值

double

8雙精度浮點數值

decimal

decimal(m,d),m>d?m+2:d+2

小數值型別

大小(位元組)

格式用途

date

3yyyy-mm-dd

日期值time

3hh:mm:ss

時間值或持續時間

year

1yyyy

年份值datetime

8yyyy-mm-dd hh:mm:ss

混合日期和時間值

timestamp

4yyyymmddhhmmss

混合日期和時間值,時間戳

型別大小(位元組)

用途char

0-255

定長字串

varchar

0-65535

變長字串

tinyblob

0-255

不超過255個字元的二進位制字串

tinytext

0-255

短文本字串

blob

0-65535

二進位制形式的長文字資料

text

0-65535

長文字資料

mediumblob

0-167 7215

二進位制形式的中等長度文字資料

mediumtext

0-167 7215

中等長度文字資料

longblob

0-42 9496 7295

二進位制形式的極大文字資料

longtext

0-42 9496 7295

極大文字資料

MySQL 05(資料庫的刪除)

當資料庫不再使用時應該將其刪除,以確保資料庫儲存空間中存放的是有效資料。刪除資料庫是將已經存在的資料庫從磁碟空間上清除,清除之後,資料庫中的所有資料也將一同被刪除。在 mysql 中,當需要刪除已建立的資料庫時,可以使用 drop database 語句。其語法格式為 drop database i...

mysql 05索引 個人筆記

1檢視表的所有索引 show index from tablename g 2普通索引的建立 2.1 語法create index index name on table name field name,asc desc create index i dogname on dog dogname a...

05 資料型別

值型別 基本型別 字串 string 數字 number 布林 boolean 空物件 null 未定義 undefined 引用資料型別 複雜型別 物件 object 陣列 array 函式 function 陣列 array 儲存資料 var arr newarray 需要通過new關鍵字來宣告...