摘要:
function a(){} 和 var a = function(){}的区别: 学习做浮窗,看到别人的代码里有: window.onresize = function(){ chroX = document.documentElement.clientWidth;//yemian整个的高宽 ch 阅读全文
摘要:
1.HAVING和WHERE: WHERE 和 HAVING 的作用对象不一样。WHERE作用于基本表或视图,挑出满足条件的元组。HAVING作用于组(group),一般配合GROUP BY 使用。 2.ANY 和 ALL: all 是将后面的内容看成一个整体, 如: >all (select ag 阅读全文
摘要:
最近在自学看 数据库系统概论 这本书,总结一下遇到的问题。 1.广义笛卡尔积(Extende cartesian product): 属于 关系代数 里面的 传统的集合运算。其他的为union,except,intersection. 详情不提了,举个例子就是: create table R(A c 阅读全文
摘要:
1.原题: https://leetcode.com/problems/decrypt-string-from-alphabet-to-integer-mapping/submissions/ Given a string s formed by digits ('0' - '9') and '#' 阅读全文
摘要:
1.原题: https://leetcode.com/problems/range-sum-of-bst/ Given the root node of a binary search tree, return the sum of values of all nodes with value be 阅读全文