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.
我有一个这样的查询:
select myId, myName, myBoolean from myTable
我希望得到一个 BIRT 表:
if myBoolen is true, print `smart` else print `sorry you're ...`
select myId, myName, case when myBoolean = 1 then 'smart' else 'sorry ...' end from myTable