Hi all! Databases question this time - I'm trying to build an ER diagram, and basically came up with this: SAVINGS 1 ------------------ 1 ACCOUNT 1 ------------------ 1 CURRENT While I know this isn't the most strategic approach, does this mean that if I create an account I'd need BOTH a Savings and a Current, or can it just mean 'either or'? Thanks :) I'll rephrase it: I have three tables: ACCOUNT, SAVINGS and CURRENT - trying to model a simple bank system. I'd like to know what relationships to put between account and savings AND account and current; right now I have one-to-one relationships on both ends. What I was wondering is, if account is related to BOTH savings AND current, how can I make it so that IF one of the tables is filled out, the other CANNOT be? :)