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.
我正在尝试创建一个页面,其中用户有自己的照片,但也有他自己的个人资料照片。我将实际照片上传到文件服务器,然后将照片名称插入 MYSQL 数据库。所以到目前为止我的桌子是,
相片
-photo_id
-照片名称
-用户身份
那么如何将照片声明为个人资料照片?常用的方法是什么?我要创建一个不同的表吗?
根据同一个表中的其他照片,将个人资料照片文件名放在单独的表中或在表中为布尔 photo_type 创建另一列可能是有意义的。阅读设计数据结构和范式。