sql
依水如风
如风
展开
-
海量数据的查询优化及分页算法方案
中国自学编程中国自学编程http://www.zxbc.cn/html/20071029/28552.html 很多人不知道SQL语句在SQL SERVER中是如何执行的,他们担心自己所写的SQL语句会被SQL SERVER误解。比如: select * from table1 where name=’zhangsan’ and tID > 10000 和执行: select * from原创 2009-06-09 20:34:00 · 853 阅读 · 0 评论 -
select into 和 insert into select区别
select * into destTbl from srcTblinsert into destTbl(fld1, fld2) select fld1, 5 from srcTbl以上两句都是将 srcTbl 的数据插入到 destTbl,但两句又有区别的。第一句(select into from)要求目标表(destTbl)不存在,因为在插入时会自动创建。第二句(inser原创 2009-07-01 20:54:00 · 446 阅读 · 0 评论