MySql select IN clause string comma delimited(MySql select IN 子句字符串逗号分隔)
问题描述
我需要按以下方式执行选择查询:
I need to perform a select query in the following manner:
select * from my_table where id NOT IN (comma_delimited_string);
实现这一目标的正确方法是什么?
What is the correct way to achieve that?
考虑到我可以控制发送字符串的客户端代码这一事实,是否有更好的方法?(该字符串将包含大约 30 个 id,因此我试图避免发送 30 个参数,每个 id 一个).
Considering the fact that I am in control of the client code which sends the string, is there a better approach? (the string will hold approximately 30 id's so I am trying to avoid sending 30 parameters, one for each id).
谢谢大家
推荐答案
你可以使用 MySQL FIND_IN_SET
函数:
You can use the MySQL FIND_IN_SET
function:
SELECT *
FROM my_table
WHERE FIND_IN_SET(id, comma_delimited_string) = 0
<小时>
附录:请注意,上面的查询不可优化,因此如果您在 id
上有索引,MySQL 将不会使用它.您必须决定使用 FIND_IN_SET
的相对简单性是否值得承担潜在的性能损失(我说潜力是因为我不知道 id
是否已编入索引,或者您的桌子足够大,因此值得关注).
Addendum: Note that the query above is not optimizable, so if you have an index on id
MySQL won't use it. You'll have to decide if the relative simplicity of using FIND_IN_SET
is worth taking a potential performance hit (I say potential because I don't know if id
is indexed or if your table is large enough for this to be a concern).
这篇关于MySql select IN 子句字符串逗号分隔的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySql select IN 子句字符串逗号分隔


- 更改自动增量起始编号? 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- SQL 临时表问题 2022-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01