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)