Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Maybe isn't correct the title, please suggest a better one!

What I would like to have:

table1:
field1
field2
.....
userID

The user id should be one of the 5 tables: User, Person, Sales, Managers, Whoknows it can be generated an additional field to "know" who's id is the userID like a

userIDtype : enum ( User, Person, Sales, Managers, Whoknows) 

how to declare it?

I understand that userID should be a foreign key and the type of the field can be only one type. Theoretically it is possible to be the 5 tables primary key different type ( String, Int, Long ) but in this case is a bigint ( in Postgree)

share|improve this question
In general, I don't think there's a way to have a foreign key point to more than one table. You should design your database schema differently. – tieTYT Jan 17 at 20:08
@DanielKaplan in general I do planning from database side, in this case I have constraints, specifications... – matheszabi Jan 17 at 20:10
1  
This question is about mapping different types and creating associations not reverse engineering. – Roman C Jan 17 at 20:11
@RomanC exactly – matheszabi Jan 17 at 21:27

2 Answers

up vote 1 down vote accepted

In Eclipselink, this is called a variable one to one mapping as described here : http://wiki.eclipse.org/Configuring_a_Relational_Variable_One-to-One_Mapping_(ELUG) And can be configured in annotations shown here http://eclipse.org/eclipselink/documentation/2.4/jpa/extensions/a_variableonetoone.htm This is provider specific though, so not portable.

share|improve this answer
+1, thanks, I saw the @JoinColumn. The problem it is: only Runtime Iwill know which table is the destination from the 5. That annotation is good for a "normal" one to many data, not for one for many types of data. – matheszabi Jan 17 at 21:26
Sorry, the first link also needs the ending bracket ')' or it leads to an empty page. Can you explain a bit more about what the data you will have in the database or what you mean by only knowing at runtime? A variable 1:1 allows having a table with a fk and a descriminator field that tells which table the fk points to. Alternatively, it allows just a fk, but then the primary keys in each of the 5 potentially referenced tables must be unique among the 5 tables. – Chris Jan 18 at 13:14

The tables can be design like a hierarchy. The parent table (User) would have all the common attributes (first name, last name ,etc). The child tables (Sales, Manager, etc.) can contain the same primary key as the User table and have their own specific attributes.

example:

create table User (userID int primary key, firstName varchar(50)); create table Manager (userID int primary Key, numberOfReports int); //userID would be a foreign key to the User table

You can always determine the type of the "UserID" by doing an IN or JOIN clause example: //the following gives list of all users that are managers select * from User where userID in (select userID from Manager)

In cases where you would want to allow a one to many relationship, you can create an additional ID for that child table.

example: create table Manager (managerID int primary Key, userID int foreign Key, numberOfReports int);

Hope this helps

share|improve this answer
thanks for try, but I would like to see a mapping, a java code, maybe with annotations, or suggestions. – matheszabi Jan 17 at 20:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.