摘要:
vbs取得毫秒 timer函数的定义为:一般作为定时器比较的好,计算时间不太好 The Timer function returns the number of seconds, and milliseconds, since 12:00 AM. 返回正中午 12 时以后已经过去的秒数。 time1=timer time2=timer debug.writeline time2-time1... 阅读全文
摘要:
注意:1.在使用Oracle的to_date函数来做日期转换时,可能会直觉地采用“yyyy-MM-dd HH:mm:ss”的格式作为格式进行转换,但是在Oracle中会引起错误:“ORA 01810 格式代码出现两次”。如:select to_date('2005-01-01 13:14:20','yyyy-MM-dd HH24:mm:ss') from dual;原因是SQL中不区分大小写,MM... 阅读全文