Gitiles
Code Review
Sign In
gerrit.lilingkun.com
/
G8Backend
/
451d71c3a34218323aebcc2ac78491f4bb401878
/
.
/
src
/
main
/
resources
/
mapper
/
PostRatingMapper.xml
blob: 097eeb8c0adaeefe27f1685680655d2e1fcbfca0 [
file
] [
log
] [
blame
]
<insert
id
=
"insertOrUpdate"
>
INSERT INTO post_ratings (user_id, post_id, rating)
VALUES (#{userId}, #{postId}, #{rating})
ON DUPLICATE KEY UPDATE rating = VALUES(rating)
</insert>