摘要:
function on(node,eventType,handler){ //e=window.event||e; node=typeof node=="string"?document.getElementById(node):node; if(document.all) //IE ... 阅读全文
摘要:
1、@@ERROR 返与@@ERROR 近语句错误码局限于DML语句select语句执行现错误则返等于0错误码没错则返0通使用判断语句没执行功-- Create Schema if not one exists with same name and owner set @stmtS = 'cr... 阅读全文
摘要:
SELECT (SELECT ac.ColName+',' FROM T1 AS ac FOR XML PATH('')) AS ColName, (SELECT ac.colTitle+',' FROM T1 AS ac FOR XML PATH('')) AS colTitle 阅读全文
摘要:
1、在非聚集索引中包含了对聚集索引的引用。也就是说在非聚集索引页上面保存了聚集索引的一份数据2、当查询包含非聚集索引列的数据时,首先对非聚集索引进行扫描,然后通过非聚集索引找到聚集索引,最后通过聚集索引定位数据3、如果select中包含非聚集索引列(A)和非索引列(B),当通过条件A(Where A... 阅读全文