| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.theory -> Re: why hierarchy?
> how you would represent something like "A person called Bob is friends with a person called Tom" in your system (obviously that's a bidirectional relationship).
(new 'bob 'person)
(new 'tom 'person)
(new 'friend 'verb)
(create bob friend tom)
(create tom friend bob)
OR
(new 'bob 'person)
(new 'tom 'person)
(new 'friend 'verb)
(create friend vbType symmetric)
(createWRR bob friend tom)
OR ...
See old thread titled "Demo: Modelling Cost of Travel Paths Between Towns" and related example www.dbfordummies.com/Example/Ex136.asp Received on Mon Jul 31 2006 - 14:34:30 CDT
![]() |
![]() |