MySQLMariaDB10.3新特性--闪回查询

Posted 东瑜

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQLMariaDB10.3新特性--闪回查询相关的知识,希望对你有一定的参考价值。

MariaDB10.3新特性--闪回查询

System-Versioned表特性的引入,可以对表进行闪回。完成类似于Oracle的闪回查询。

修改已有表为System-Versioned

MariaDB [zsd]> alter table test with system versioning;
MariaDB [zsd]> select * from test;
+------+-----------+
| id   | name      |
+------+-----------+
|    1 | 张盛东    |
|    2 | 刘忠浩    |
+------+-----------+
2 rows in set (0.001 sec)

MariaDB [zsd]> select now();
+---------------------+
| now()               |
+---------------------+
| 2019-09-26 15:38:29 |
+---------------------+
1 row in set (0.000 sec)

MariaDB [zsd]> insert into  test values(3,'胡轲');
Query OK, 1 row affected (0.004 sec)

对插入之前的时间点,做基于时间点的闪回查询,如下:

```shell
MariaDB [zsd]> select * from test for SYSTEM_TIME AS OF TIMESTAMP ‘2019-09-26 15:38:29 ‘;
+------+-----------+
| id | name |
+------+-----------+
| 1 | 张盛东 |
| 2 | 刘忠浩 |
+------+-----------+
2 rows in set (0.000 sec)

MariaDB [zsd]> select * from test;
+------+-----------+
| id | name |
+------+-----------+
| 1 | 张盛东 |
| 2 | 刘忠浩 |
| 3 | 胡轲 |
+------+-----------+
3 rows in set (0.001 sec)

以上是关于MySQLMariaDB10.3新特性--闪回查询的主要内容,如果未能解决你的问题,请参考以下文章

oracle闪回特性

1. Oracle 闪回特性(FLASHBACK DATABASE)

3.Oracle 闪回特性(Flashback QueryFlashback Table)

Oracle闪回技术[未完]

ArcGIS 10.3 for Server新特性介绍

4. Oracle 闪回特性(Flashback VersionFlashback Transaction)