Would it be possible (or is it illegal for any reason) to have something like this:

isa with foreign key relationship

This is basically an ISA class with a foreign-key relationship to itself.

The idea is that an output message is just simply a message. But every message (or let’s call it input message) has an associated output message. This is the need for the foreign key relationship.

Is this ok, if not why not? Or is there a better way to model this?

Thnx.

link|improve this question

58% accept rate
1  
Not 'illegal' but if it really is mandatory 1:1 then you'd probably be more efficient putting both in a single table. So each row would contain exactly one Message and its corresponding Output Message. Also, is the "ISA" rel really correct? i.e. does Output Message really extend Message in some way? Or is it the case that Input & Output Messages have the same structure & behaviour but you need to be able to match each input to its output? – sfinnie Jul 4 '11 at 22:15
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.