- 1、本文档共14页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
mysql的sql语法和常用函数(SQL syntax and common functions of MySQL)
mysql的sql语法和常用函数(SQL syntax and common functions of MySQL)
SQL syntax and common functions of MYSQL
1 data type
MySQL supports all standard SQL numeric data types. These types include strict numeric data types (INTEGER, SMALLINT, DECIMAL, and NUMERIC), and approximate numeric data types (FLOAT, REAL, and DOUBLE, PRECISION). The keyword INT is a synonym for INTEGER, and the keyword DEC is synonymous with DECIMAL.
Data type description bytes are recommended
SMALLINT integers, from -32000 to +32000 range 2, store relatively small integers. For example: age, quantity
INT integers, ranging from -2000000000 to +2000000000 range 4, store medium integers, such as distance
BIGINT cannot describe super large integers with SMALLINT or INT. 8 store large integers, such as scientific / mathematical data
FLOAT single precision floating point data 4 stores decimal data, such as measurement and temperature
DOUBLE double precision floating point data 8 requires double precision decimal data, such as scientific data
DECIMAL user-defined floating-point data variables of precision, depending on accuracy and length, and storing decimal data with exceptionally high accuracy. For example: the amount of money, scientific data
CHAR fixed length strings, specific string lengths (up to 255 characters), stores variables that usually contain predefined strings, such as regular routes, countries, or zip codes
String variable variable length VARCHAR with a maximum limit of 1; and the actual length of the string (up to 255 characters) strings of different length value (up to a certain maximum). For example: name, password, or label
TEXT has a variable length string Variable without maximum length constraints; 2 + listens to actual string length to store large text data, such as news stories, product descriptions
BLOB binary string variables; 2 + actual string length stores binary data, such as pictures, attachments, and binary documents
DATE in yyyy-mm-dd format for example: 3 date storage date of
您可能关注的文档
- joo1(joo1).doc
- java面试纠错题目大全(Java interview error correction topics).doc
- jorinde and joringel(jorinde和joringel).doc
- js document对象(i document对象).doc
- jdbc 访问各种数据库 url 语法(总结篇)(JDBC access various database URL syntax (summary)).doc
- java面象对象编程(Java object like programming).doc
- jsp input限制输入(JSP input restrict input).doc
- js语句及语法(JS statements and syntax).doc
- juniper基本配置入门(Introduction to basic configuration of juniper).doc
- js语法(JS syntax).doc
文档评论(0)