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