gpt4 book ai didi

php - 按 id 和特定列字母 a-z 选择

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

我有如下数据,我有数组 (3, 4, 8) 意味着我必须得到 id,
有没有一种方法可以使用数组按 subject 列字母 a 到 z 获取行?

id | subject   
unsigned auto_increment | varchar(255)

id | subject
3 | beck
4 | agyness
5 | zelta
7 | bess
8 | green



for ($i=0; $i < count(id_array); $i++) {
..
select * from table where id = id_array[$i]
}

最佳答案

这将选择数组中的所有 id 并按主题排序

$someArray = array(1,5,6,7);

"SELECT * from table where id IN (".implode(",", $someArray).") order by subject ";

关于php - 按 id 和特定列字母 a-z 选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27530905/

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