有2个表:crash
和traffic_flow
。crash
表的属性为crash_date
,time
和相应的检测器ID
。
检测器记录的traffic_flow
表具有属性date
,time
,detector_ID
,自动递增ID和流量参数。
现在,我愿意为崩溃中的每一行随机选择traffic_flow
中的10行,并将它们插入新表中。
以下是试用版:
select traffic_flow.id
from traffic_flow,crash
where traffic_flow.date=crash.date and traffic_flow.ID=crash.ID
order by rand()
limit 10;
但是此sql语句为所有崩溃记录总共选择10行,而不是崩溃中的每一行,因此它不能满足我的要求。您能帮我修改一下吗?
最佳答案
在MySQL中,最简单的方法是使用变量枚举每次崩溃的行:
select *
from (select ct.*,
(@rn := if(@ct = id, @rn + 1,
if(@ct := id, 1, 1)
)
) as rn
from (select c.*, tf.id as tf_id
from traffic_flow tf join
crash c
on tf.date = c.date and tf.ID = c.ID
order by c.id, rand()
) ct cross join
(select @cid := -1, @rn := 0) params
)
where rn <= 10;
关于mysql - 如何根据另一个表中的每一行随机选择一个表中的行?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50211475/