create table  a1 (
batch varchar2(20) 
)select batch  ,case batch when 'pj' then 'yes' else 'no' end from a1 为何这样?