mysql資料型別

2021-10-05 01:22:11 字數 1376 閱讀 9046

更全面的資料型別可以參考 菜鳥教程

這裡陳述些簡單的用法

create table `tb_type_test1`  (

`n1` int(11) not null comment '帶符號',

`n2` int(10) unsigned zerofill not null comment '不帶符號',

`n3` float(21, 5) not null comment '帶符號',

`n4` double(41, 7) not null comment '帶符號',

`n5` decimal(10, 3) not null comment '帶符號',

`n6` int(3) unsigned zerofill null default null

)說明1:

只有選擇了 無符號,才會有0填充。

如果n2和n6,給予相同的內容12,那麼:

有0填充  =>  n2:0000000012;n6:012

無0填充  =>  n2:12;n6:12

說明2:

n1,是帶符號的,只是如果是正數時,可以省略。

create table `tb_type_test2`  (

`d1` date not null comment '範圍:1000-01-01/9999-12-31',

`d2` datetime(0) not null comment '範圍:1000-01-01 00:00:00/9999-12-31 23:59:59',

`d3` year not null comment '範圍:1901/2155',

`d4` time(0) not null,

`d5` timestamp(0) not null comment '範圍:1970-01-01 00:00:00/2038'

)create table `tb_type_test3`  (

`c1` char(10) character set utf8 collate utf8_general_ci not null default 'python3' comment '定常',

`c2` varchar(10) character set utf8 collate utf8_general_ci not null default 'python3' comment '不定常',

`c3` tinyblob null comment '不超過 255 個字元的二進位制字串',

`c4` text character set utf8 collate utf8_general_ci null comment '長文字'

)char和varchar,可以用關鍵字(default)設定預設值:default 'python3'

mysql資料型別用法 mysql資料型別和用法

歡迎進入linux社群論壇,與200萬技術人員互動交流 進入 mysql支援多種列型別 數值型別 日期 時間型別和字串 字元 型別。本章首先對這些列型別進行了概述,然後更加詳細地描述了各種列的型別,以及列型別儲存需求的總結。概述很簡單。關於具體列型別 歡迎進入linux社群論壇,與200萬技術人員互...

mysql 資料型別 真假 MySQL 資料型別

mysql基礎 資料型別 整型型別 根據所儲存的整數數值取值範圍不同,可分為以下五類 1 tinyint佔1個位元組 2 smallint佔2個位元組 3 mediumint 佔3個位元組 4 int佔4個位元組 5 bigint佔8個位元組 根據每種型別所佔的位元組數可確定其無符號整數和有符號整數...

mysql 郵箱 資料型別 mysql 資料型別

1 整型mysql資料型別含義 有符號 tinyint m 1個位元組 範圍 128 127 smallint m 2個位元組 範圍 32768 32767 mediumint m 3個位元組 範圍 8388608 8388607 int m 4個位元組 範圍 2147483648 21474836...