其他分享
首页 > 其他分享> > Mybatis 查询前判断表是否存在

Mybatis 查询前判断表是否存在

作者:互联网

CommonMapper.java   接口方式
@Mapper
@Component
public interface CommonMapper {
    /**
     * 判断表是否存在
     *
     * @param tableName 表名称
     * @return 结果
     * @author yunnuo
     */
    @Select(" SELECT COUNT(*) as count FROM information_schema.TABLES WHERE table_name = #{tableName}")
    Integer existsTable(@Param("tableName") String tableName);
}

xml方式

        <!-- 判断表是否存在 --><select id="existsTable" parameterType="string" resultType="java.lang.Integer">
           SELECT COUNT(*) as count FROM information_schema.TABLES WHERE table_name = #{tableName}
        </select>

测试

   @Test
    public void test3(){
        Integer integer = commonMapper.existsTable("data_20220601");
        System.out.println(integer);
    }

1表示存在,0表示不存在,在做动态表名前要做表存在校验,否则可能会报Table 'xxxx' doesn't exist!

 

标签:CommonMapper,information,判断,tableName,查询,Mybatis,table,WHERE,SELECT
来源: https://www.cnblogs.com/juanxincai/p/16333253.html