摘要:
注意: private static ExecutorService executor = Executors.newCachedThreadPool(); newCachedThreadPool最大线程数为整型的最大值,每提交一个任务,如果没有线程处理,那就产生一个新的线程。当我们for循环提交任 阅读全文
摘要:
删除列 alter table table-name drop col-name 增加列(多列) alter table table-name add col-name col-type comment 'xxx', add col-name col-type(col-length) comment 阅读全文