摘要:
Group by 后面的字段要与select后面的字段匹配,即select后面包含有哪些字段,group by后面就应该有哪些字段——聚合涵数除外。拼接字段如concat、iif、isnull等里边的字段也要放到group by后面才不会报错。 for xml path('') 会将group by 阅读全文
摘要:
1.选取元素 // jQuery var els = $('.el'); // Native var els = document.querySelectorAll('.el'); // Shorthand var $ = function (el) { return document.queryS 阅读全文