1. obclient> create table t1(id bigint not null primary key, gmt_create datetime not null default current_timestamp);
    2. Query OK, 0 rows affected (0.09 sec)
    3. obclient> insert into t1(id) values(1),(2),(3);
    4. Query OK, 3 rows affected (0.02 sec)
    5. Records: 3 Duplicates: 0 Warnings: 0
    6. obclient> select * from t1;
    7. +----+---------------------+
    8. | ID | GMT_CREATE |
    9. +----+---------------------+
    10. | 3 | 2020-02-28 09:47:07 |
    11. +----+---------------------+
    12. 3 rows in set (0.00 sec)
    13. obclient> drop table t1;
    14. Query OK, 0 rows affected (0.03 sec)
    15. obclient> show recyclebin;
    16. *************************** 1. row ***************************
    17. OBJECT_NAME: __recycle_$_20200102_1585650066255592
    18. ORIGINAL_NAME: t1
    19. 1 row in set (0.03 sec)
    20. obclient> flashback table __recycle_$_20200102_1585650066255592 to before drop rename to t1;
    21. Query OK, 0 rows affected (0.02 sec)
    22. obclient> select * from t1;
    23. +----+---------------------+
    24. | ID | GMT_CREATE |
    25. +----+---------------------+
    26. | 1 | 2020-02-28 09:47:07 |
    27. | 2 | 2020-02-28 09:47:07 |