gpt4 book ai didi

php - 从 Mysql 获取逗号分隔的字符串

转载 作者:行者123 更新时间:2023-12-01 00:15:00 26 4
gpt4 key购买 nike

我正在像这样将一个字符串从 PHP 保存到 MySQL..

$groupid = "13, 14, 15, 16"
$write = mysql_query("INSERT INTO table VALUES ('','$groupid')");

如果 $a = "15",我将尝试从表中提取数据

$extract = mysql_query("SELECT * FROM table WHERE ustaffid='$ustaffid' AND groupid='$a'");

如何在提取 $groupid 时轻松地将 $groupid 中的内容与 $a 匹配?我可以用 MySQL 做到这一点吗?

最佳答案

您可以使用 find_in_set在这里发挥作用。

SELECT * 
FROM table
WHERE ustaffid='$ustaffid'
AND FIND_IN_SET('$a', groupid) > 0

关于php - 从 Mysql 获取逗号分隔的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6216311/

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