MySql select IN 子句字符串逗号分隔

MySql select IN clause string comma delimited(MySql select IN 子句字符串逗号分隔)
本文介绍了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 子句字符串逗号分隔的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)