根据表名查询数据表时也不过滤表描述为空的数据

This commit is contained in:
fish 2018-09-13 17:23:05 +08:00
parent 70bd5c87c3
commit 24f6b22b39
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectTableByName" parameterType="String" resultMap="TableInfoResult">
<include refid="selectGenVo"/>
where table_comment <![CDATA[ <> ]]> '' and table_schema = (select database())
where table_schema = (select database())
and table_name = #{tableName}
</select>