我观看了一些关于如何使用表和字段构建数据库的 youtube 视频。我对如何构建我的信息有点困惑。
我把我的尝试放在下面:
// Identifier Table
// This is where we give each item a new unique identifier
UniqueID []
// Item Table
// This is where the main content goes which is displayed
UniqueID []
Title []
Description []
Date []
Location []
Coordinates []
Source []
Link []
// Misc Table
// This is additional useful information, but not displayed
geocoded []
country name []
通过在删除记录时分离出 uniqueID,我可以确保新记录仍然具有唯一的递增 ID。我能得到一些关于我如何将数据分成三个表的反馈吗?