SQL数据类型说明和MySQL语法示例

SQL数据类型 (SQL Data Types)

Each column in a database table is required to have a name and a data type.

数据库表中的每一列都必须具有名称和数据类型。

An SQL developer must decide what type of data that will be stored inside each column when creating a table. The data type is a guideline for SQL to understand what type of data is expected inside of each column, and it also identifies how SQL will interact with the stored data.

SQL开发人员必须确定在创建表时将在每一列内存储的数据类型。 数据类型是SQL理解每列内部期望的数据类型的指南,并且还确定SQL将如何与存储的数据进行交互。

MySQL数据类型 (MySQL Data Types)

SQL general data types consist of the following:

SQL常规数据类型包括以下内容:

  1. A text- and/or numeric-based value, often referred to as a STRING

    基于文本和/或数字的值,通常称为“ STRING”
  2. A numeric-only value, often referred to as an INTEGER

    仅数字值,通常称为INTEGER
  3. A calendar- and/or clock-based value, often reffered to as DATE or TIME

    基于日历和/或时钟的值,通常为DATE或TIME
  4. A database-specific value such as a boolean (two-option) flag, an array that stores multiple values within one data point

    特定于数据库的值,例如布尔(双选项)标志,该​​数组在一个数据点内存储多个值

文字数据类型: (Text data types:)

Data typeDescription
CHAR(size)Holds a fixed length string (can contain letters, numbers, and special characters). The fixed size is specified in parenthesis. Can store up to 255 characters
VARCHAR(size)Holds a variable length string (can contain letters, numbers, and special characters). The maximum size is specified in parenthesis. Can store up to 255 characters. Note: If you put a greater value than 255 it will be converted to a TEXT type
TINYTEXTHolds a string with a maximum length of 255 characters
TEXTHolds a string with a maximum length of 65,535 characters
BLOBFor BLOBs (Binary Large OBjects). Holds up to 65,535 bytes of data
MEDIUMTEXTHolds a string with a maximum length of 16,777,215 characters
MEDIUMBLOBFor BLOBs (Binary Large OBjects). Holds up to 16,777,215 bytes of data
LONGTEXTHolds a string with a maximum length of 4,294,967,295 characters
LONGBLOBFor BLOBs (Binary Large OBjects). Holds up to 4,294,967,295 bytes of data
ENUM(x,y,z,etc.)Let you enter a list of possible values. You can list up to 65535 values in an ENUM list. If a value is inserted that is not in the list, a blank value will be inserted. Note: The values are sorted in the order you enter them. You enter the possible values in this format: ENUM(‘X’,‘Y’,‘Z’)
SETSimilar to ENUM except that SET may contain up to 64 list items and can store more than one choice
数据类型 描述
CHAR(大小) 持有固定长度的字符串(可以包含字母,数字和特殊字符)。 固定大小在括号中指定。 最多可存储255个字符
VARCHAR(大小) 包含可变长度的字符串(可以包含字母,数字和特殊字符)。 最大大小在括号中指定。 最多可以存储255个字符。 注意:如果您输入的值大于255,它将转换为TEXT类型
细语 包含最大长度为255个字符的字符串
文本 包含最大长度为65,535个字符的字符串
BLOB 对于BLOB(二进制大对象)。 最多可容纳65,535个字节的数据
中文字 包含最大长度为16,777,215个字符的字符串
中号 对于BLOB(二进制大对象)。 最多可容纳16,777,215字节数据
长文本 包含最大长度为4,294,967,295个字符的字符串
龙宝 对于BLOB(二进制大对象)。 最多可容纳4,294,967,295字节的数据
枚举(x,y,z等) 让您输入可能值的列表。 您最多可以在ENUM列表中列出65535个值。 如果插入的值不在列表中,则将插入空白值。 注意:值将按照您输入的顺序进行排序。 您可以使用以下格式输入可能的值:ENUM('X','Y','Z')
与ENUM相似,但SET最多可以包含64个列表项,并且可以存储多个选项

数字数据类型: (Number data types:)

Data typeDescription
TINYINT(size)-128 to 127 normal. 0 to 255 UNSIGNED*. The maximum number of digits may be specified in parenthesis
SMALLINT(size)-32768 to 32767 normal. 0 to 65535 UNSIGNED*. The maximum number of digits may be specified in parenthesis
MEDIUMINT(size)-8388608 to 8388607 normal. 0 to 16777215 UNSIGNED*. The maximum number of digits may be specified in parenthesis
INT(size)-2147483648 to 2147483647 normal. 0 to 4294967295 UNSIGNED*. The maximum number of digits may be specified in parenthesis
BIGINT(size)-9223372036854775808 to 9223372036854775807 normal. 0 to 18446744073709551615 UNSIGNED*. The maximum number of digits may be specified in parenthesis
FLOAT(size,d)A small number with a floating decimal point. The maximum number of digits may be specified in the size parameter. The maximum number of digits to the right of the decimal point is specified in the d parameter
DOUBLE(size,d)A large number with a floating decimal point. The maximum number of digits may be specified in the size parameter. The maximum number of digits to the right of the decimal point is specified in the d parameter
DECIMAL(size,d)A DOUBLE stored as a string , allowing for a fixed decimal point. The maximum number of digits may be specified in the size parameter. The maximum number of digits to the right of the decimal point is specified in the d parameter
数据类型 描述
天晴(尺码) -128至127正常。 0至255 UNSIGNED *。 可以在括号中指定最大位数
SMALLINT(大小) -32768至32767正常。 0到65535 UNSIGNED *。 可以在括号中指定最大位数
MEDIUMINT(大小) -8388608至8388607正常。 0到16777215 UNSIGNED *。 可以在括号中指定最大位数
INT(尺寸) -2147483648至2147483647正常。 0至4294967295 UNSIGNED *。 可以在括号中指定最大位数
BIGINT(大小) -9223372036854775808至9223372036854775807正常。 0至18446744073709551615未签名*。 可以在括号中指定最大位数
浮法(尺寸,d) 一个带有浮点小数点的小数字。 可以在size参数中指定最大位数。 小数点右边的最大位数在d参数中指定
双(大小,d) 带有小数点浮点的大数。 可以在size参数中指定最大位数。 小数点右边的最大位数在d参数中指定
十进制(大小,d) 以字符串形式存储的DOUBLE,允许使用固定的小数点。 可以在size参数中指定最大位数。 小数点右边的最大位数在d参数中指定

日期数据类型: (Date data types:)

Data typeDescription
DATE()A date. Format: YYYY-MM-DD Note: The supported range is from ‘1000-01-01’ to ‘9999-12-31’
DATETIME()A date and time combination. Format: YYYY-MM-DD HH:MI:SS Note: The supported range is from ‘1000-01-01 00:00:00’ to ‘9999-12-31 23:59:59’
TIMESTAMP()A timestamp. TIMESTAMP values are stored as the number of seconds since the Unix epoch (‘1970-01-01 00:00:00’ UTC). Format: YYYY-MM-DD HH:MI:SS Note: The supported range is from ‘1970-01-01 00:00:01’ UTC to ‘2038-01-09 03:14:07’ UTC
TIME()A time. Format: HH:MI:SS Note: The supported range is from ‘-838:59:59’ to ‘838:59:59’
YEAR()A year in two-digit or four-digit format. Note: Values allowed in four-digit format: 1901 to 2155. Values allowed in two-digit format: 70 to 69, representing years from 1970 to 2069
数据类型 描述
日期() 一个约会。 格式:YYYY-MM-DD注:支持的范围是从“ 1000-01-01”到“ 9999-12-31”
约会时间() 日期和时间组合。 格式:YYYY-MM-DD HH:MI:SS注意:支持的范围是从“ 1000-01-01 00:00:00”到“ 9999-12-31 23:59:59”
TIMESTAMP() 时间戳记。 TIMESTAMP值存储为自Unix纪元('1970-01-01 00:00:00'UTC)以来的秒数。 格式:YYYY-MM-DD HH:MI:SS注意:支持的范围是从UTC的“ 1970-01-01 00:00:01”到UTC的“ 2038-01-09 03:14:07”
时间() 一次 格式:HH:MI:SS注意:支持的范围是'-838:59:59'到'838:59:59'
年() 两位数字或四位数字格式的年份。 注意:允许以四位数字格式的值:1901到2155。允许以两位数格式的值:70到69,表示从1970到2069的年份。

Finally, there are a few other data types that you will use:

最后,还有一些其他数据类型将要使用:

其他数据类型 (Other Data Types)

Data typeDescription
BOOLEANStores TRUE or FALSE values
ARRAYA set-length and ordered collection of elements
MULTISETA variable-length and unordered collection of elements
XMLStores XML data
数据类型 描述
BOOLEAN 存储TRUEFALSE
ARRAY 元素的集合长度和有序集合
MULTISET 可变长度和无序元素集合
XML 存储XML数据

翻译自: https://www.freecodecamp.org/news/sql-data-types-mysql/

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/390823.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

PHP7.2 redis

为什么80%的码农都做不了架构师?>>> PHP7.2 的redis安装方法: 顺便说一下PHP7.2的安装: wget http://cn2.php.net/distributions/php-7.2.4.tar.gz tar -zxvf php-7.2.4.tar.gz cd php-7.2.4./configure --prefix/usr/local/php…

leetcode 1787. 使所有区间的异或结果为零

题目 给你一个整数数组 nums​​​ 和一个整数 k​​​​​ 。区间 [left, right]&#xff08;left < right&#xff09;的 异或结果 是对下标位于 left 和 right&#xff08;包括 left 和 right &#xff09;之间所有元素进行 XOR 运算的结果&#xff1a;nums[left] XOR n…

【JavaScript】网站源码防止被人另存为

1、禁示查看源代码 从"查看"菜单下的"源文件"中同样可以看到源代码&#xff0c;下面我们就来解决这个问题&#xff1a; 其实这只要使用一个含有<frame></frame>标记的网页便可以达到目的。 <frameset> <frame src"你要保密的文件…

梯度 cv2.sobel_TensorFlow 2.0中连续策略梯度的最小工作示例

梯度 cv2.sobelAt the root of all the sophisticated actor-critic algorithms that are designed and applied these days is the vanilla policy gradient algorithm, which essentially is an actor-only algorithm. Nowadays, the actor that learns the decision-making …

共享语义 unix语义_语义UI按钮

共享语义 unix语义什么是语义UI按钮&#xff1f; (What are Semantic UI Buttons?) A button indicates a possible user action. Semantic UI provides an easy-to-use syntax that simplifies not only the styling of a button, but also the natural language semantics.按…

垃圾回收算法优缺点对比

image.pngGC之前 说明&#xff1a;该文中的GC算法讲解不仅仅局限于某种具体开发语言。 mutator mutator 是 Edsger Dijkstra 、 琢磨出来的词&#xff0c;有“改变某物”的意思。说到要改变什么&#xff0c;那就是 GC 对象间的引用关系。不过光这么说可能大家还是不能理解&…

标准C程序设计七---77

Linux应用 编程深入 语言编程标准C程序设计七---经典C11程序设计 以下内容为阅读&#xff1a; 《标准C程序设计》&#xff08;第7版&#xff09; 作者&#xff1a;E. Balagurusamy&#xff08;印&#xff09;&#xff0c; 李周芳译 清华大学出版社…

leetcode 1190. 反转每对括号间的子串

题目 给出一个字符串 s&#xff08;仅含有小写英文字母和括号&#xff09;。 请你按照从括号内到外的顺序&#xff0c;逐层反转每对匹配括号中的字符串&#xff0c;并返回最终的结果。 注意&#xff0c;您的结果中 不应 包含任何括号。 示例 1&#xff1a; 输入&#xff1a…

yolo人脸检测数据集_自定义数据集上的Yolo-V5对象检测

yolo人脸检测数据集计算机视觉 (Computer Vision) Step by step instructions to train Yolo-v5 & do Inference(from ultralytics) to count the blood cells and localize them.循序渐进的说明来训练Yolo-v5和进行推理(来自Ultralytics )以对血细胞进行计数并将其定位。 …

oauth2-server-php-docs 授权类型

授权码 概观 在Authorization Code交付式时使用的客户端想要请求访问受保护资源代表其他用户&#xff08;即第三方&#xff09;。这是最常与OAuth关联的授予类型。 详细了解授权码 用例 代表第三方来电履行 创建一个实例OAuth2\GrantType\AuthorizationCode并将其添加到您的服务…

flask框架视图和路由_角度视图,路由和NgModule的解释

flask框架视图和路由Angular vs AngularJS (Angular vs AngularJS) AngularJS (versions 1.x) is a JavaScript-based open source framework. It is cross platform and is used to develop Single Page Web Application (SPWA). AngularJS(版本1.x)是一个基于JavaScript的开源…

NGUI EventDelagate事件委托

using System.Collections; using System.Collections.Generic; using UnityEngine;public class BUttonClick : MonoBehaviour {public UIButton button_01;void Start(){if (button_01 null){Debug.Log("button组件丢失了");}else{//首先将脚本中的ClicktheButton…

leetcode 461. 汉明距离(位运算)

两个整数之间的汉明距离指的是这两个数字对应二进制位不同的位置的数目。 给出两个整数 x 和 y&#xff0c;计算它们之间的汉明距离。 注意&#xff1a; 0 ≤ x, y < 231. 示例:输入: x 1, y 4输出: 2解释: 1 (0 0 0 1) 4 (0 1 0 0)↑ ↑上面的箭头指出了对应二进…

图深度学习-第2部分

有关深层学习的FAU讲义 (FAU LECTURE NOTES ON DEEP LEARNING) These are the lecture notes for FAU’s YouTube Lecture “Deep Learning”. This is a full transcript of the lecture video & matching slides. We hope, you enjoy this as much as the videos. Of cou…

Linux下 安装Redis并配置服务

一、简介 1、 Redis为单进程单线程模式&#xff0c;采用队列模式将并发访问变成串行访问。 2、 Redis不仅仅支持简单的k/v类型的数据&#xff0c;同时还提供list&#xff0c;set&#xff0c;zset&#xff0c;hash等数据结构的存储。 3、 Redis支持数据的备份&#xff0c;即mas…

大omega记号_什么是大欧米茄符号?

大omega记号Similar to big O notation, big Omega(Ω) function is used in computer science to describe the performance or complexity of an algorithm.与大O表示法相似&#xff0c;大Omega(Ω)函数在计算机科学中用于描述算法的性能或复杂性。 If a running time is Ω…

leetcode 477. 汉明距离总和(位运算)

theme: healer-readable 题目 两个整数的 汉明距离 指的是这两个数字的二进制数对应位不同的数量。 计算一个数组中&#xff0c;任意两个数之间汉明距离的总和。 示例: 输入: 4, 14, 2 输出: 6 解释: 在二进制表示中&#xff0c;4表示为0100&#xff0c;14表示为1110&…

什么是跨域及跨域请求资源的方法?

1、由于浏览器同源策略&#xff0c;凡是发送请求url的协议、域名、端口三者之间任意一与当前页面地址不同即为跨域。 2、跨域请求资源的方法&#xff1a; (1)、porxy代理(反向服务器代理) 首先将用户发送的请求发送给中间的服务器&#xff0c;然后通过中间服务器再发送给后台服…

量子信息与量子计算_量子计算为23美分。

量子信息与量子计算On Aug 13, 2020, AWS announced the General Availability of Amazon Braket. Braket is their fully managed quantum computing service. It is available on an on-demand basis, much like SageMaker. That means the everyday developer and data scie…

全面理解Java内存模型

Java内存模型即Java Memory Model&#xff0c;简称JMM。JMM定义了Java 虚拟机(JVM)在计算机内存(RAM)中的工作方式。JVM是整个计算机虚拟模型&#xff0c;所以JMM是隶属于JVM的。 如果我们要想深入了解Java并发编程&#xff0c;就要先理解好Java内存模型。Java内存模型定义了多…