gpt4 book ai didi

mysql - 如何为开发环境转储 MySQL 数据库中所有表的最近 1000 行?

转载 作者:可可西里 更新时间:2023-11-01 08:48:36 25 4
gpt4 key购买 nike

我希望创建一个更轻量级的开发数据库。如果不需要最近插入的行,这是一个很好的解决方案:

mysqldump -u root -p -h hostname --single-transaction --opt --where="1 limit 1000" dbname > dump.sql

这会转储数据库中每个表的前 1000 行。

但是如何从每个数据库中转储最后 1000 行?

如果每个表都有一个 id 字段(例如。ORDER BY id DESC)就足够了,但这不能指望。

假设表格最多可以达到 100MM 行。完整的数据库转储可以在 10-30GB 范围内测量。

最佳答案

-- you need to give your rows a row id, and go from there

ALTER TABLE `tablename ` ADD COLUMN `row_id` INT NULL AFTER `some_column`;

update tablename JOIN (SELECT @curRow := 0) r set row_id=@curRow := @curRow + 1 ;

-- throw the max row id into a variable:

set @max=(select max(row_id) from tablename );

-- delete or select whatever by that variable:

delete from tablename where row_id< @max-1000

关于mysql - 如何为开发环境转储 MySQL 数据库中所有表的最近 1000 行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20568029/

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