mysql续型_mysql续集1
2.6數據類型
2.6.1數據類型概覽
#1. 數字:
整型:tinyinit int bigint
小數:
float :在位數比較短的情況下不精準
double :在位數比較長的情況下不精準
0.000001230123123123
存成:0.000001230000
decimal:(如果用小數,則用推薦使用decimal)
精準
內部原理是以字符串形式去存
#2. 字符串:
char(10):簡單粗暴,浪費空間,存取速度快
root存成root000000
varchar:精準,節省空間,存取速度慢
sql優化:創建表時,定長的類型往前放,變長的往后放
比如性別 比如地址或描述信息
>255個字符,超了就把文件路徑存放到數據庫中。
比如圖片,視頻等找一個文件服務器,數據庫中只存路徑或url。
#3. 時間類型:
最常用:datetime
#4. 枚舉類型與集合類型
2.6.2整數類型
整數類型有
tinyint smallint mediumint int bigint
作用
存儲年齡,id,號碼等
========================================
tinyint[(m)] [unsigned] [zerofill]
小整數,數據類型用于保存一些范圍的整數數值范圍:
有符號:
-128 ~ 127
無符號:
0 ~ 255
PS: MySQL中無布爾值,使用tinyint(1)構造。
========================================
int[(m)][unsigned][zerofill]
整數,數據類型用于保存一些范圍的整數數值范圍:
有符號:
-2147483648 ~ 2147483647
無符號:
0 ~ 4294967295
========================================
bigint[(m)][unsigned][zerofill]
大整數,數據類型用于保存一些范圍的整數數值范圍:
有符號:
-9223372036854775808 ~ 9223372036854775807
無符號:
0 ~ 18446744073709551615
#"有符號和無符號tinyint,默認是有符號"
mysql> alter table t2 add x tinyint;
Query OK, 0 rows affected (0.02 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> desc t2;
+-------+------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------+------------+------+-----+---------+-------+
| x | tinyint(4) | YES | | NULL | |
+-------+------------+------+-----+---------+-------+
1 row in set (0.00 sec)
#"超出范圍報錯"
mysql> insert into t1 values(-129),(-128),(127),(128);
ERROR 1136 (21S01): Column count doesn‘t match value count at row 1
mysql> insert into t2 values(-129),(-128),(127),(128);
ERROR 1264 (22003): Out of range value for column ‘x‘ at row 1
mysql> insert into t2 values(-128),(-128),(127),(128);
ERROR 1264 (22003): Out of range value for column ‘x‘ at row 4
mysql> insert into t2 values(-128),(-128),(127),(127);
Query OK, 4 rows affected (0.01 sec)
Records: 4 Duplicates: 0 Warnings: 0
mysql>
#"設置無符號tinyint,超出范圍報錯"
mysql> insert into t2 values (-2),(23),(2899);
ERROR 1264 (22003): Out of range value for column ‘x‘ at row 1
mysql> insert into t2 values (2),(23),(2899);
ERROR 1264 (22003): Out of range value for column ‘x‘ at row 3
mysql> insert into t2 values (2),(23),(255);
Query OK, 3 rows affected (0.00 sec)
Records: 3 Duplicates: 0 Warnings: 0
#"int 和bigint不再嘗試,也都是超出范圍自動報錯"
#"用zerofill測試整數數據類型的顯示寬度
#int(3)這里是設置的顯示寬度,不是設置存儲的數據范圍"
mysql> alter table t2 modify x int(3) zerofill;
Query OK, 3 rows affected (0.02 sec)
Records: 3 Duplicates: 0 Warnings: 0
mysql> insert into t2 values (1),(11),(111),(1111);
Query OK, 4 rows affected (0.00 sec)
Records: 4 Duplicates: 0 Warnings: 0
mysql> select * from t2;
+------+
| x |
+------+
| 002 |
| 023 |
| 255 |
| 001 |
| 011 |
| 111 |
| 1111 |#寬度超過限制仍然可以保存
+------+
7 rows in set (0.00 sec)
mysql>
"沒有必要為整數類型設置寬度,使用默認就可以"
2.6.3浮點型
======================================
#FLOAT[(M,D)] [UNSIGNED] [ZEROFILL]
定義:
單精度浮點數(非準確小數值),m是數字總個數,d是小數點后個數。m最大值為255,d最大值為30
有符號:
-3.402823466E+38 to -1.175494351E-38,
1.175494351E-38 to 3.402823466E+38
無符號:
1.175494351E-38 to 3.402823466E+38
精確度:
**** "隨著小數的增多,精度變得不準確 "****
======================================
#DOUBLE[(M,D)] [UNSIGNED] [ZEROFILL]
定義:
雙精度浮點數(非準確小數值),m是數字總個數,d是小數點后個數。m最大值為255,d最大值為30
有符號:
-1.7976931348623157E+308 to -2.2250738585072014E-308
2.2250738585072014E-308 to 1.7976931348623157E+308
無符號:
2.2250738585072014E-308 to 1.7976931348623157E+308
精確度:
****"隨著小數的增多,精度比float要高,但也會變得不準確" ****
======================================
decimal[(m[,d])] [unsigned] [zerofill]
定義:
準確的小數值,m是數字總個數(負號不算),d是小數點后個數。 m最大值為65,d最大值為30。
精確度:
**** "隨著小數的增多,精度始終準確" ****
對于精確數值計算時需要用此類型
decaimal能夠存儲精確值的原因在于其內部按照字符串存儲。
mysql> create table t1(x float(256,31));
ERROR 1425 (42000): Too big scale 31 specified for column ‘x‘. Maximum is 30.
mysql> create table t1(x float(256,30));
ERROR 1439 (42000): Display width out of range for column ‘x‘ (max = 255)
mysql> create table t1(x float(255,30)); #建表成功
Query OK, 0 rows affected (0.02 sec)
mysql> create table t2(x double(255,30)); #建表成功
Query OK, 0 rows affected (0.02 sec)
mysql> create table t3(x decimal(66,31));
ERROR 1425 (42000): Too big scale 31 specified for column ‘x‘. Maximum is 30.
mysql> create table t3(x decimal(66,30));
ERROR 1426 (42000): Too-big precision 66 specified for ‘x‘. Maximum is 65.
mysql> create table t3(x decimal(65,30)); #建表成功
Query OK, 0 rows affected (0.02 sec)
mysql> show tables;
+---------------+
| Tables_in_db1 |
+---------------+
| t1 |
| t2 |
| t3 |
+---------------+
rows in set (0.00 sec)
mysql> insert into t1 values(1.1111111111111111111111111111111); #小數點后31個1
Query OK, 1 row affected (0.01 sec)
mysql> insert into t2 values(1.1111111111111111111111111111111);
Query OK, 1 row affected (0.00 sec)
mysql> insert into t3 values(1.1111111111111111111111111111111);
Query OK, 1 row affected, 1 warning (0.01 sec)
mysql> select * from t1; #隨著小數的增多,精度開始不準確
+----------------------------------+
| x |
+----------------------------------+
| 1.111111164093017600000000000000 |
+----------------------------------+
row in set (0.00 sec)
mysql> select * from t2; #精度比float要準確點,但隨著小數的增多,同樣變得不準確
+----------------------------------+
| x |
+----------------------------------+
| 1.111111111111111200000000000000 |
+----------------------------------+
row in set (0.00 sec)
mysql> select * from t3; #精度始終準確,d為30,于是只留了30位小數
+----------------------------------+
| x |
+----------------------------------+
| 1.111111111111111111111111111111 |
+----------------------------------+
row in set (0.00 sec)
2.6.4日期類型
總結
以上是生活随笔為你收集整理的mysql续型_mysql续集1的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: java爬虫怎么确定url连接_Java
- 下一篇: Java怎么查找字符串大写_在Java中