摘要: public static Map GetGoodTypes() { Map goodTypes=new HashMap(); goodTypes.put(1,"原材料"); goodTypes.put(2,"辅料"); goodTypes.put(3,"产成品"); return goodType 阅读全文
posted @ 2019-03-19 18:23 小芝麻开花 阅读(971) 评论(0) 推荐(0) 编辑
摘要: 1.切换到主分支 2.右击选择merge, 选择被合并的分支 阅读全文
posted @ 2019-03-19 18:22 小芝麻开花 阅读(5981) 评论(0) 推荐(0) 编辑
摘要: 对于MySQL的复制相同表结构方法,有create table as 和create table like 两种,区别是什么呢?create table t2 as select * from t1 where 1=2;或者 limit 0;as创建出来的t2表(新表)缺少t1表(源表)的索引信息, 阅读全文
posted @ 2019-03-19 14:16 小芝麻开花 阅读(627) 评论(0) 推荐(0) 编辑