gpt4 book ai didi

mysql - 如何在新数据库中包含当前行(即最近的行)?

转载 作者:行者123 更新时间:2023-11-29 11:13:36 25 4
gpt4 key购买 nike

<小时/>

我想在新数据库中插入最近三行?

  +------------+----------+---------+--------------+--------------+-----------+--------------+--------+------+--------------+
| time | userid | groupid | jobs_running | jobs_pending | job_limit |
+------------+----------+---------+--------------+--------------+-----------+--------------+--------+------+--------------+
| 1476274005 | achandra | | 4 | 0 | 0 |
| 1476274005 | akawle | | 52 | 48 | 0 |
| 1476274005 | apatil2 | | 20 | 6 | 0 |
| 1476274793 | snagnoor | | 17 | 67 | 0 |
| 1476274793 | snatara2 | | 0 | 54 | 0 |
| 1476274793 | sthykkoo | | 9 | 476 | 0 |

预期输出:

        | 1476274793 | snagnoor |         |           17 |           67 |          0 |
| 1476274793 | snatara2 | | 0 | 54 | 0 |
| 1476274793 | sthykkoo | | 9 | 476 | 0 |

最佳答案

我认为这个查询会起作用。db2 是新数据库,db1 是旧数据库,您必须从其中复制表

insert into db2.`new_table_name` select * from  db1.old_table order by `time` desc limit 3

ps。此代码未经测试。

关于mysql - 如何在新数据库中包含当前行(即最近的行)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40124352/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com