Home > Database > Mysql Tutorial > MySQL学习笔记12:数据类型_MySQL

MySQL学习笔记12:数据类型_MySQL

WBOY
Release: 2016-06-01 13:36:58
Original
719 people have browsed it

bitsCN.com

好吧,到现在才开始写数据类型,真是惭愧

之前那本书把MySQL里面的数据类型写得太复杂,把我搞懵了

其实对于一个初学者来说,只需要了解基础的,然后加以运用就好

这里的笔记随用到的时候再逐个添加……

 

VARCHAR:能存储文本数据,最大长度可以达到255个字符

      使用起来很灵活,可以配合数据长度进行调整,如VARCHAR(25)

 

DATETIME/TIMESTAMP:负责记录时间+日期

 

TIME:负责记录时间

 

DATE:负责记录日期

 

YEAR:能用来存储年份,比如birth

 

DEC:DECIMAL的缩写,可以提供数值空间,直到装满为止,

   还能这么用DEC(6,2)表示长度为6,小数占两位

 

CHAR/CHARACTER:严格存储预先设定好的长度,是多少字符就是多少字符

            没有VARCHAR灵活

 

INT/INTEGER:整数专用,也可以存储负数

 

BLOB:大文本数据存储专用,比如长度超过VARCHAR(255)

 

FLOAT:存储单精度浮点数,也就是带小数点的

 

DOUBLE:存储爽精度浮点数,带的小数个数比上面那个要多一些

bitsCN.com
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template