0

これらの 2 つのテーブルから 1 対 1 の関係を作成する最良の方法は何ですか?

CREATE TABLE hotel(
id_Hotel
...

)

CREATE TABLE Manager(
ID_Manager
...

)

どうもありがとう!

4

1 に答える 1

0

通常のアプローチは次のようになります。

create table Hotel(id_Hotel INT, id_Manager INT...)

しかし、より実用的な解決策は次のとおりです。

create table Hotel(id_Hotel INT, ...);
create table Manager(id_Manager INT, ...);
create table Hotel_Manager(id_HM INT, id_Hotel INT, id_Manager INT, CreateDate Date);
于 2016-12-09T11:06:39.197 に答える