zoukankan      html  css  js  c++  java
  • 【数据库】insert语句

    <insert id="insert" parameterType="net.huadong.entity.system.SystemRole">
    insert into SYSTEM_ROLE
    <trim prefix="(" suffix=")" suffixOverrides=",">
    <if test="name != null">
    name,
    </if>
    <if test="role_code != null">
    role_code,
    </if>
    <if test="description != null">
    description,
    </if>
    <if test="sort_id != null">
    sort_id,
    </if>
    <if test="disabled != null">
    disabled,
    </if>
    <if test="id != null">
    id,
    </if>
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides=",">
    <if test="name != null">
    #{name},
    </if>
    <if test="role_code != null">
    #{role_code},
    </if>
    <if test="description != null">
    #{description},
    </if>
    <if test="sort_id != null">
    #{sort_id},
    </if>
    <if test="disabled != null">
    #{disabled},
    </if>
    <if test="id != null">
    #{id},
    </if>
    </trim>
    </insert>
  • 相关阅读:
    257. Binary Tree Paths
    poj2406 kmp
    hust1010 kmp
    hdu1358 kmp的next数组
    hdu3746 kmp求循环节
    hdu1686字符串kmp
    hdu2087kmp
    hdu1711kmp
    poj3067树状数组求逆序数
    poj1159二维树状数组
  • 原文地址:https://www.cnblogs.com/CESC4/p/7395606.html
Copyright © 2011-2022 走看看