此文章主要講述的是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移植解決方案的應用實例的描述,希望會給你帶來一些幫助在此方面。