Created
June 6, 2016 20:05
-
-
Save flash-gordon/a47720eefcbd1bb46d320a12e1392075 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create type node as object( | |
left_node anydata, | |
right_node anydata, | |
value anydata | |
); | |
/ | |
declare | |
op node; | |
begin | |
op := node(anydata.ConvertNumber(5), anydata.ConvertNumber(10), anydata.ConvertVarchar2('+')); | |
end; | |
/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment