摘要: PL/SQL Developer Test script 3.0 52 declare --行类型 row_emp T_LEDGER%rowtype; --显式游标 cursor cur_emp is select t.* from T_LEDGER T,t_Coursetypes c where t.course_id=c.id and t.account_noc.course_... 阅读全文
posted @ 2017-11-09 16:49 丨逸仙 阅读(269) 评论(0) 推荐(0)
摘要: ---------------------- //数字格式化 function formatNumber(num, precision, separator) { var parts; // 判断是否为数字 if (!isNaN(parseFloat(num)) && isFinite(num)) { // 把类似 .5, 5. 之类的数据转化成0.5... 阅读全文
posted @ 2017-11-09 16:41 丨逸仙 阅读(306) 评论(0) 推荐(0)