比如QQ空间的说说点赞,需要在数据库记录哪些信息?有没有最优解
可以这样创建数据库表post table
id
post_like table
post_id
user_id
post_id 和 user_id 加索引
就酱紫。查询的时候在post_like表中查询:
post_like
select * from post_like where post_id = 1;
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
可以这样创建数据库表
post table
id
post_like table
id
post_id
user_id
post_id
和user_id
加索引就酱紫。
查询的时候在
post_like
表中查询: