摘要:
Maven自身指定定义了一套对项目进行编译,测试,打包,运行,部署等工作的抽象。Maven自己是不实际负责这些工作的,而是把它们交给了插件。所以Maven命令的实际工作执行者是各种各样的插件。 要了解Maven命令,还得知道Maven生命周期的概念。Maven有三套独立的生命周期:clean, de 阅读全文
摘要:
1.对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引。2.应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引而进行全表扫描,如:select id from t where num is null可以在num 阅读全文
摘要:
python中有一个zfill方法用来给字符串前面补0,非常有用 n = "123" s = n.zfill(5) assert s == "00123" n = "123" s = n.zfill(5) assert s == "00123" n = "123" s = n.zfill(5) as 阅读全文
摘要:
1. Select as table select * from table(var_tab) 2. Convert column to table and join parent table select b.* from aud_item a join table(a.log) b on 1=1 阅读全文