展现progress数据库数据,是不是不支持isnull,Upper等函数,case when是不是也不能用
如果我要展现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
那我该怎么写法 --------------------编程问答-------------------- 写错了一点地方
如果我要展现progress数据库内容要用到isnull,Upper等函数以及case when那该怎么办
例如:
select pub.pt_part.pt_part
,isnull(pub.pt_part.pt_nbr,0)
,case when pub.pt_part.pt_oh='0' then '0' else '1' as oh
from pub.pt_part
那我该怎么写法
补充:.NET技术 , C#