创建一对一的关系SQL

时间:2016-12-09 11:03:01

标签: sql m

从这两个表创建一对一关系的最佳方法是什么 ?

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<form class="userbasic">
  <article>
    <label for="i4">Zip</label>
    <input id="i4" type="text">
  </article>
  <article>
    <label for="i5">Very long name</label>
    <input id="i5" type="Number">
  </article>
</form>

非常感谢!

1 个答案:

答案 0 :(得分:0)

通常的做法是:

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);

但更实际的解决方案是:

{series.name}