0
這是我明白,寫下你對這個數據庫的建議,我有一個在線雜誌的設計:您對我設計的這本雜誌數據庫的想法?
- 一篇文章可以屬於很多類別。
- 一篇文章可以有空或許多照片。
- 一篇文章可以有空或許多標籤。
Table: `tb_categories`
Columns:
`cat_id` (Primary Key)
`catname`
`parent_id`
。
Table: `tb_articles`
Columns:
`article_id`(Primary Key)
`title`
`subtitle`
`textbody`
`source_id`
`date`
`remark`
。
Table: `tb_sources`
Columns:
`source_id` (Primary Key)
`sourcename`
。
Table: `tb_photos`
Columns:
`photo_id` (Primary Key)
`photofilename`
。
Table: `tb_tags`
Columns:
`tag_id` (Primary Key)
`tagname`
。
Table: `tb_articles_photo`
Columns:
`article_id` (Foreign Key)
`photo_id` (Foreign Key)
。
Table: `tb_articles_tags`
Columns:
`article_id` (Foreign Key)
`tag_id` (Foreign Key)
。
`tb_articles_categories`
Columns:
`article_id` (Foreign Key)
`cat_id` (Foreign Key)
null,你的意思是零? – recursive 2009-11-17 14:20:14
有什麼建議?你問這個設計是否「正確」?或者如何實現設計? – 2009-11-17 14:23:45
我也沒有。我會盡我所能來幫助他進行編輯。 – mauris 2009-11-17 14:24:24