05 2016 档案
摘要:Cron表达式是一个字符串,字符串以5或6个空格隔开,分开工6或7个域,每一个域代表一个含义,Cron有如下两种语法 格式: Seconds Minutes Hours DayofMonth Month DayofWeek Year 或 Seconds Minutes Hours DayofMont
阅读全文
摘要:如上 destTbl 和 srcTbl 分别为两个表名。 以上两句都是将 srcTbl 的数据插入到 destTbl,但两句又有区别的: 第一句(select into from)要求目标表(destTbl)不存在,因为在插入时会自动创建。 第二句(insert into select from)要
阅读全文