Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はcustomerテーブルを持っています。システムに追加されたすべての新規顧客に対してコメントを追加するか、既存の顧客に対してコメントを追加する必要があるという新しい要件があります。
customer
これまでのところ、テーブルと列にコメントを追加する方法を知っています。詳しくはこちらを参考にしました。
commentsこのテーブルにという名前の新しい列を追加することを検討しました。customerテーブル内のすべての顧客にコメントを実装するには、他に何ができますか?
comments
各顧客が複数のコメントを持つことができるように、コメントの音ごとに別のテーブルが必要になります。
CustomerTable CustomerId int CustomerName varchar(100) CommentsTable CommentId int CommentDateTime datetime CustomerId Comment varchar(4000)