このコードをOracle SQLに変換するのを手伝ってくれる人はいますか? または、これが Oracle SQL でエラーをスローする理由を教えてください。
declare @PropertyName varchar(64)
set @PropertyName= 'ESRegion'
select PD.PropertyId,
PD.PropertyName,
convert(varchar(255), v.Value ) DisplayValue
from Property_Dictionary PD WITH(READUNCOMMITTED)
inner join CorpTax_LookupDefinition l on l.Lookupkey = pd.ReferenceType
join MDTable md on l.DataDictionaryTypeId = md.TableGUID
join ValueChar v on
(
v.TableID = md.TableID
and v.AttributeID = l.DisplayAttributeId
)
where PD.DataTypeid = 7
and PD.PropertyName = @PropertyName