自学内容网 自学内容网

xml中根据传入值动态设置查询表的表名

需要使用 <![CDATA[ ${databaseTableName} ]]>  ${databaseTableName}

包含特殊字符可使用前者

直接使用 #{databaseTableName} 会导致程序报错

Caused by: com.microsoft.sqlserver.jdbc.SQLServerException: 必须声明表变量 "@P0"。

<select id="queryReportDataList" parameterType="Entity" resultMap="EntityResult">
        SELECT
        id,
        filePath
        FROM <![CDATA[ ${databaseTableName} ]]>
        <where>  
            <if test="applicationName != null and applicationName != ''"> and applicationName like concat('%', #{applicationName}, '%')</if>

            <if test="startDate != null and startDate != ''">and applicationDate &gt;= #{startDate}</if>
            <if test="endDate != null and endDate != ''">and applicationDate &lt;= #{endDate}</if>
        </where>
    </select>

                                                                Leslie Lee 随笔


原文地址:https://blog.csdn.net/Leslie_Lei/article/details/145280223

免责声明:本站文章内容转载自网络资源,如侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!