mybatis 中 DDL && DML

      在mapper.xml中一般都是对表数据进行DML(增删改查)操作,很少通过MyBatis对数据库进行DDL(create, alter, drop)操作,下面就mybatis的DDL给大家做个简单介绍。

在相关mapper.xml文件中DDL的配置代码如下:
    
        alter table ${tableName} rename ${newTableName}
    

    
        truncate table ${tableName}
    
    
    
        create table ${newTableName} as select * from ${tableName}
    
    
注意:DDL语句都应该放在标签中使用。

你可能感兴趣的:(truncate)