如果我要展现progress数据库内容要用到isnull,Upper等函数以及case when那该怎么办
例如:
select pub.pt_part.pt_part
       ,isnull(pub.pt_part.pt_nbr)
       ,case when pub.pt_part.pt_oh='0' then '0' else '1' as oh
from pub.pt_part
那我该怎么写法