我想从表格中获取一些记录:
HAVING COUNT(*) < n.dailyshow
n.dailyshow
是一个数字或字母(如u
)
当n.dailyshow = 'u'
时,它意味着无限制,Having Count(*) < n.dailyshow
必须被IF
删除,或者{
"aps":{
"alert" :"your test message",
"sound":"default"
};
}
,当它是一个数字时,让命令保持不变。
答案 0 :(得分:0)
这样的事情应该有效:
having if(n.dailyshow = 'u', true, (count(*) < n.dailyshow))
或
having n.dailyshow = 'u' or (count(*) < n.dailyshow)