Mysql批量删除使用“not in”

发布于 2024-08-27 19:25:09 字数 240 浏览 10 评论 0原文

任何人都可以帮我解决这个 mysql 查询:

delete from generic__campaings_included where dealer_id not in ('2,3,4') and campaing_id = '1'

当我执行这个查询时,我没有得到正常的结果。除 2 (dealer_id) 外,所有行均已删除。

如何将“not in”与“and”运算符一起使用?

Anybody can help me with this mysql query:

delete from generic__campaings_included where dealer_id not in ('2,3,4') and campaing_id = '1'

When I execute this query I didn't get normal result. Except 2 (dealer_id) all rows deleted.

How can I use "not in" with "and" operator?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

弱骨蛰伏 2024-09-03 19:25:09

不应该是这样没有单引号吗?

delete from generic__campaings_included where dealer_id not in (2,3,4) and campaing_id = 1

或者如果列是字符串

delete from generic__campaings_included where dealer_id not in ('2','3','4') and campaing_id = '1'

您删除了 dealer_id <> 的行'2,3,4'(即字符串文字,而不是 2、3 或 4 之一)

Should it not be this without single quotes?

delete from generic__campaings_included where dealer_id not in (2,3,4) and campaing_id = 1

or this if the columns are string

delete from generic__campaings_included where dealer_id not in ('2','3','4') and campaing_id = '1'

You deleted rows where dealer_id <> '2,3,4' (that is, a string literal rather than one of 2, 3, or 4)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文