日志-每天临时记录

1、java 获取一个目录下的所有列表

           File[] files = file.listFiles();

2、java删除文件

          if (file.delete()) {

System.out.println("删除单个文件" + fileName + "成功!");

return true;

} else {

System.out.println("删除单个文件" + fileName + "失败!");

return false;

}

3、sql server 复制一张表中数据到另外一张表中

         SQL Server中,如果目标表存在:

insertinto目标表 select* from原表;

SQL Server中,,如果目标表不存在:

select* into目标表 from原表;

Oracle中,如果目标表存在:

insertinto目标表 select* from原表;

commit;

Oracle中,如果目标表不存在:

createtable目标表 asselect* from原表;


4、mybatis 同时执行多条语句

4.1、直接写多条语句,用“;”隔开即可

delete from sec_user_role where userId=#{id};

delete from sec_user where id=#{id};

4.2、mybatis 执行truncate 表

             truncate table [表名]An

5、执行insert into SupplierSDBeDocs_test select * from SupplierSDBeDocs 报错误

explicit value for the identity column in table 'dbo.tbl_A_archive' can

only be specified when a column list is used and IDENT

 解决办法需要指定插入的列

```

test 1245

```

你可能感兴趣的:(日志-每天临时记录)