如何使结果集中的每一行返回多次?

发布于 2024-11-06 11:00:48 字数 155 浏览 1 评论 0原文

我正在编写一个使用 Mysql 的应用程序,目前我的表中没有太多数据。我想测试我的应用程序如何处理大量数据。为了做到这一点,我需要结果集中的每一行重复多次。

我知道我可以运行查询并将其与相同的查询联合起来,并与相同的查询联合起来。是否有其他方法可以让我更轻松地选择发生多少次重复?

I'm writing an application that uses Mysql and for now my tables don't have many data in it. I want to test how my application handles a larger amount of data. In order to do that I need each row in the resultset to repeat itself several times.

I know that I can run the query and UNION it with the same query and UNION that with the same query. Is there a different way that makes it easier for me to choose how many duplications will occur?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

天气好吗我好吗 2024-11-13 11:00:49

确保您有一个要插入的表

以生成虚拟数据。 http://www. generatedata.com 这将生成数据以及插入脚本。

然后创建一个海量数据集

Make sure you have a table to insert into

To generate dummy data. http://www.generatedata.com This will generate the data as well as the insert scripts.

Then Just create a massive dataset

兲鉂ぱ嘚淚 2024-11-13 11:00:49

你可以对其本身进行交叉连接,这会产生 2^n 个结果,但这都是肮脏的黑客行为

You could do a cross join on itself, which would yield 2^n results, but it's all going to be dirty hacks

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文