摘要:
``` javascript window.onbeforeunload = function (e) { e = e || window.event; var y = window.event.clientY;//e.clientY:只有IE8支持 if (y = Math.max(document.body ? document.body.clientHeight : 0, ... 阅读全文
摘要:
oracle “ with as ”短语,也叫做子查询部分。 如果一个sql片段被重复使用或者sql本身比较繁琐,可以考虑将sql片段单独拿出来,起一个别名。 例: with e as (select from scott.emp), d as (select from scott.dept) se 阅读全文