我正在尝试在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个“OR”链接在一起
答案 0 :(得分:0)
select * from flyers where eventDate >= '20120101' and clubId in('0001','0002') ORDER BY eventDate asc limit 20