MySQL 時間
阿新 • • 發佈:2017-08-06
mysql 相同 無符號 from ++ distinct values create ont
1.去掉重復的數值
select owner from pet; select distinct owner from pet;
2.
CREATE TABLE t1 (year YEAR(4), month INT(2) UNSIGNED ZEROFILL, day INT(2) UNSIGNED ZEROFILL); INSERT INTO t1 VALUES(2000,1,1),(2000,1,20),(2000,1,30),(2000,2,2), (2000,2,23),(2000,2,23);
year(4)
insert into time values(78); #數據庫中顯示:1978
insert into time values(‘78‘); #數據庫中顯示:1978
insert into time values(‘1978‘); #數據庫中顯示:1978
UNSIGNED:
將數字類型無符號化,這與C和C++這些程序語言的unsigned含義相同。
INT的類型範圍-2 147 483 648~2 147 483 647
INT UNSIGNED範圍0~4 294 967 295
MySQL 時間