All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mapper.ArticleMapper.xml Maven / Gradle / Ivy

There is a newer version: 21.5.0
Show newest version
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="net.guerlab.smart.article.service.mapper.ArticleMapper">

    <sql id="table">
        `article_article`
    </sql>

    <update id="addViewNumber">
        UPDATE
        <include refid="table"/>
        SET
        `viewNumber` = `viewNumber` + 1
        WHERE
        `articleId` = #{articleId}
    </update>


</mapper>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy