此文章主要讲述的是Orac数据库到DB2移植的正确破解方案,我们为了更清楚的对其进行表达,我们所以采用的是实例的方式对其进行更好的说明,以下就是文章的主要内容的详细描述,望大家在浏览之后会对其有更深的了解。
Oracle SQL:
- select decode(t.organtypecode, ''D'', t.parent, ''S'', t.parent, t.id)
- from A_ORGAN t
- where t.parent = 35
- DB2 SQL:
- select case x.organtypecode
- when ''D'' then
- x.parent
- when ''S'' then
- x.parent
- else
- x.id
- end
- from a_Organ x
- where x.parent = 35;
以上的相关内容就是对Oracle到DB2移植解决方案的应用实例的介绍,望你能有所收获。
上述的相关内容就是对Oracle到DB2移植解决方案的应用实例的描述,希望会给你带来一些帮助在此方面。
【编辑推荐】