SQLite 元组相等性比较

发布于 2024-10-29 03:57:37 字数 283 浏览 1 评论 0原文

对于 PostgreSQL 和 MySQL,可以做类似的事情

SELECT * FROM mytable WHERE (column1, column2) = ('value1', 'value2');

当我在 SQLite3 上尝试同样的事情时,它给了我一个令人筋疲力尽的错误消息:

Error: near ",": syntax error

从 SQLite 文档中我无法弄清楚它是否支持元组。有人能解释一下吗?

With PostgreSQL and MySQL it is all right to do something like

SELECT * FROM mytable WHERE (column1, column2) = ('value1', 'value2');

When I tried the same thing on SQLite3, it gave me an exhausting error message:

Error: near ",": syntax error

From the SQLite documentation I can't figure out whether it supports tuples or not. Can anyone shed some light on this?

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

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

发布评论

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

评论(2

拔了角的鹿 2024-11-05 03:57:37

语法为 WHERE expr,正如我们在 expr 的语法图中所看到的,
不支持后跟逗号的列 (expr)。

表达式:
在此处输入图像描述

The syntax is WHERE expr and as we can see in the syntax diagram for expr,
a column (expr) followed by a comma isn't supported.

expr:
enter image description here

眼泪淡了忧伤 2024-11-05 03:57:37

这样做:

SELECT * FROM mytable WHERE column1 = 'value1' AND column2 = 'value2'

Do like this:

SELECT * FROM mytable WHERE column1 = 'value1' AND column2 = 'value2'

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