0

我正在尝试在我的 simpleDB 上创建一个查询。这是查询:

select * from flyers where eventDate >= '20120101' and clubId= '0001' OR clubId = '0002' ORDER BY eventDate asc limit 20

问题在于:

clubId= '0001' OR clubId = '0002'

我得到错误:[无效的排序表达式。sort 属性必须存在于至少一个谓词中,并且谓词不能包含 is null 运算符。]

如果可能的话,我还希望能够将多达 20 个“或”链接在一起

4

1 回答 1

0

正如 daan 亲切地指出的那样:

select * from flyers where eventDate >= '20120101' and clubId in('0001','0002') ORDER BY eventDate asc limit 20
于 2012-07-04T02:16:16.190 回答