java mybatis后台判断表是否存在mysql
<select id="isTableExist" parameterType="string" resultType="int"> select count(*) from information_schema.TABLES where table_name = #{tableName}
</select>
<select id="isTableExist" parameterType="string" resultType="int"> select count(*) from information_schema.TABLES where table_name = #{tableName}
</select>