N Artists have M Folders.
1 Folder has N Sketches.
艺术家
ArtistId (PK)
艺术家文件夹
ArtistId (PK)(FK)
FolderId (PK)(FK)
文件夹
FolderId (PK)
草图
SketchId (PK)
FolderId (FK)
我现在想要的是这样的:
1 位艺术家有 N 个草图。
我将不得不向表 Sketch 添加一个新字段:ArtistId
当我为文件夹插入草图时,此字段将始终为空/null。
你知道更好的设计吗?