views:

19

answers:

1

Is it possible to break the composite key of a table and use one of them as a primary key for other table? if YES plz tel how can i do it..

+1  A: 

Generally you use a composite key when none of the columns alone contains unique values. Since a primary key must be unique, you probably can't use just one of the columns.

Mark Byers