gpt4 book ai didi

运算符 “ANY” 的 SQLite 语法

转载 作者:IT王子 更新时间:2023-10-29 06:26:10 27 4
gpt4 key购买 nike

我正在尝试在 SQLite 中执行此查询:

SELECT *
FROM customers
WHERE rating = ANY
(SELECT rating
FROM customers
WHERE city = 'Rome');

但是收到这个错误:

Query Error: near "SELECT": syntax error Unable to execute statement

如果我更换 评分 = 任意rating IN,一切正常。

谁能告诉我 ANY 语句在 SQLite 中是如何工作的以及我做错了什么?

最佳答案

据我所知,SQLite 没有ANY 运算符。但是,您可以使用 IN 运算符来获得所需的功能:

SELECT *
FROM customers
WHERE rating IN -- Here!
(SELECT rating
FROM customers
WHERE city = 'Rome');

关于运算符 “ANY” 的 SQLite 语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35333660/

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