Gitiles
Code Review
Sign In
gerrit.lilingkun.com
/
G8Backend
/
070c05afe8c9d9a5b390577fb704fbe4cf7aeec8
/
.
/
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>