摘要:
原文链接:http://www.cnblogs.com/25miao/p/7942137.html using System; using System.Timers; namespace DaoChuCore2 { class Program { static void Main(string[] 阅读全文
摘要:
在数据库里进行分页处理 最近没事试着写一些简单的存储过程,由于以前很少用到或者很少自己写存储过程。所以历尽各种艰难,让自己也备受打击。 这是我写的两种排序,一种是使用 not in NOT IN 另一种使用的是row_number, ROW_NUMBER 说一下我在写的时候进入的一个误区我在使用ro 阅读全文
摘要:
电脑CTRL组合键 Ctrl + A 全选 Ctrl + B 整理 收藏夹 Ctrl + C 复制 Ctrl + D 删除/添加收藏 (在Word中是修改选定字符格式,在IE及傲游中是保存为收藏) Ctrl + E 搜索助理 在Word中是段落居中 Ctrl + F 查找 Ctrl+ G 在Word 阅读全文
摘要:
解1: select top 10 * from A where id not in (select top 30 id from A) 解2: select top 10 * from A where id > (select max(id) from (select top 30 id from 阅读全文