JAVA实现点赞功能 if语句

发布网友 发布时间:2022-04-22 00:56

我来回答

1个回答

热心网友 时间:2023-06-24 04:03

Goods表设计的有问题啊
goods(赞数)应该在新闻表里
goods表只要存id
news_id(新闻id)
user_id(用户id)
发sql查是否已点赞的时候where条件判断news_id

user_id
select
count(1)
from
Goods
where
news_id=?
and
user_id=?
值大于0就代表已点赞
只等于0就插入点赞的数据

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com