Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是使用 Oracle 尝试类似于以下代码的新手,但无法完成任务。
CASE WHEN Dimension='abc' then value=100 When Dimension='def' then Value between 200 and 300 end
但它抛出错误Missing Keyword state
Missing Keyword state
请帮我解决这个问题
你可以用这种方式重写你的 where 子句。
(Dimension='abc' and value=100) or (Dimension='def' and value between 200 and 300)