关于主键和外键的问题

shop表:

    主键:id

A表:

    主键:id,shop_id

B表:

    主键:id,shop_id

A_B表

    主外键:a_id,b_id

以上结构中红色的shop_id就不能是主键了,只能是外键,虽然在sql中结构是没有问题的,但无法通过jpa或orm实例化

你可能感兴趣的:(关于主键和外键的问题)