我的mysql表结构有效吗?我正在制作一个简单的主页(索引页),其中包含三个部分:
Top section consisted of three part :
A Background image (string, only image-path is being saved here)
A main title (string)
A short explanation of the main title (string).
中间部分也分为三个部分:
Left-part : Welcome message (string)
Middle part : 'Where' information (string)
Right part : ' When ' information (string)
页脚,也分为三个部分:
Left-part : some content (string)
Middle-part : link to our affiliate/partner's website . Will have three column for the ID(integer), displayed name (String) and the actual link (string)
RIght-part : our main office address (string) and below that, a social media icons as links to our social media.
我正在考虑将整个顶部和中间部分以及页脚左部分放在一个表中(将其命名为Table 1
),因为它们只有一行(将始终返回(单行),并且没有任何关系。我认为该表不需要ID,对吗?
对于页脚部分,我想我需要将它们分为中间部分和右边部分两个表,它们返回几行作为结果。 (因为它们是链接)。
因此Table 2
是页脚部分的中间部分:
ID (integer)
Displayed name (string)
The actual link (string)
对于由一个地址和一个社交媒体链接组成的页脚右部分,我是否应该将“地址”列放入其内容仅包含一行的Table 1
中?因此,社交媒体表(将其命名为table 3
完全由id
和social media links
组成。
我的表结构有效吗?谢谢!