mysql中的_rowid
前言
在Oracle
数据库的表中的每一行数据都有一个唯一的标识符,称为rowid
,在Oracle
内部通常就是使用它来访问数据的。
而在MySQL
中也有一个类似的隐藏列_rowid
来标记唯一的标识。但是需要注意_rowid
并不是一个真实存在的列,其本质是一个非空唯一列的别名。
PS:本文是基于MySQL 5.7
进行研究的
_rowid到底是什么
在前文提到了_rowid
并不是一个真实存在的列,其本质是一个非空唯一列的别名。为什么会这么说呢?
因为在某些情况下_rowid
是不存在的,其只存在于以下情况:
- 当表中存在一个数字类型的单列主键时,
_rowid
其实就是指的是这个主键列 - 当表中不存在主键但存在一个数字类型的非空唯一列时,
_rowid
其实就是指的是对应非空唯一列。
需要注意以下情况是不存在_rowid
的
- 主键列或者非空唯一列的类型不是数字类型
- 主键是联合主键
- 唯一列不是非空的。
详情可以参考MySQL
官方文档内容:
If a table has a PRIMARY KEY or UNIQUE NOT NULL index that consists of a single column that has an integer type, you can use _rowid to refer to the indexed column in SELECT statements, as follows:
- _rowid refers to the PRIMARY KEY column if there is a PRIMARY KEY consisting of a single integer column. If there is a PRIMARY KEY but it does not consist of a single integer column, _rowid cannot be used.
- Otherwise, _rowid refers to the column in the first UNIQUE NOT NULL index if that index consists of a single integer column. If the first UNIQUE NOT NULL index does not consist of a single integer column, _rowid cannot be used.
参考资料
相关推荐
emmm00 2020-11-17
王艺强 2020-11-17
aydh 2020-11-12
世樹 2020-11-11
zry 2020-11-11
URML 2020-11-11
spurity 2020-11-10
yifangs 2020-10-13
Andrea0 2020-09-18
Ida 2020-09-16
ltd00 2020-09-12
tufeiax 2020-09-03
xjd0 2020-09-10
greatboylc 2020-09-10
adsadadaddadasda 2020-09-08
疯狂老司机 2020-09-08
CoderToy 2020-11-16
ribavnu 2020-11-16
bianruifeng 2020-11-16