gpt4 book ai didi

php - MySQL随机id受列限制

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

我有一个表,其 id 从 1 到 300 排序,其中有更多列(A、B、C、D 等)

如何获取受 C 列信息限制的随机 ID

示例

ID   column C
1 teacher
2 student
3 teacher
4 student
etc...

假设我只想要 C 列中“学生”的随机 id(在本例中只能是 2 或 4)

谢谢

最佳答案

这是一种方法:

select id
from table t
where c = 'student'
order by rand()
limit 1;

表中只有 300 行,性能应该不错。

关于php - MySQL随机id受列限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31638652/

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