从一张表中的分组数据中获取随机数据
情况是这样的。我有一个数据库表,其中包含以下各列:
PATIENT_ID
PATIENT_GROUP
FIRSTNAME
LASTNAME
ADDRESS
我想从特定的 PATIENT_GROUP
中随机获取 PATIENT_ID
。
仅表中有 5 个 PATIENT_GROUP
,总行数约为 10000 (10K)。 每个 PATIENT_GROUP
的数据数量不同。某些 PATIENT_GROUP
的数据比其他组少。您知道此任务可能最快的 SQL 查询吗?顺便说一下,我使用的是SQLite3。
当没有 PATIENT_GROUP
时,我可以提出这个查询:
SELECT PATIENT_ID FROM TB_Patient
WHERE rowid >= (ABS(RANDOM()) % (SELECT MAX(rowid) FROM TB_Patient)) LIMIT 1
解决这个问题的最佳方法是什么?目标是尽可能最快的查询。
谢谢。
Here is the situation. I have one database table with the columns below:
PATIENT_ID
PATIENT_GROUP
FIRSTNAME
LASTNAME
ADDRESS
I want to get PATIENT_ID
randomly from certain PATIENT_GROUP
.
There are 5 PATIENT_GROUP
only with total row in the table is about 10000 (10K).
The number of data per PATIENT_GROUP
is not the same. Certain PATIENT_GROUP
has less data than the others. Do you know the fastest possible SQL query for this task? By the way, I am using SQLite3.
When there is no PATIENT_GROUP
, I could come up with this query:
SELECT PATIENT_ID FROM TB_Patient
WHERE rowid >= (ABS(RANDOM()) % (SELECT MAX(rowid) FROM TB_Patient)) LIMIT 1
What's your best approach to solve this? The objective is the fastest possible query.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您运行的患者组,尝试使用以下带有不同
的查询:我不确定它是否更快,但应该更容易使用。
祝你好运!
try using the following query with different
<group_id>
according to the patient_group you are running on:I am not sure it is faster but it should be more easy to work with.
Good Luck!