これらの 2 つのテーブルから 1 対 1 の関係を作成する最良の方法は何ですか?
CREATE TABLE hotel(
id_Hotel
...
)
CREATE TABLE Manager(
ID_Manager
...
)
どうもありがとう!
通常のアプローチは次のようになります。
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);