我正在尝试在我的 simpleDB 上创建一个查询。 下面是查询:
select * from flyers where eventDate >= '20120101' and clubId= '0001' OR clubId = '0002' ORDER BY eventDate asc limit 20
问题出在:
clubId= '0001' OR clubId = '0002'
我收到错误:[无效的排序表达式。排序属性必须至少存在于一个谓词中,并且谓词不能包含 is null 运算符。
如果可能的话,我还希望能够将多达 20 个"OR"链接在一起
正如Daan善意指出的那样:
select * from flyers where eventDate >= '20120101' and clubId in('0001','0002') ORDER BY eventDate asc limit 20