摘要: 键盘码在底层开发中经常用到,有时候我们会忘记它们,就要急急忙忙的去找 键-码 对照表查看,其实程序可以自己打印出 键-码 对应值#include #include int main(void) { int key, modifiers; while ((key=bioskey(0))... 阅读全文
posted @ 2014-08-08 21:18 牧师/preacher 阅读(626) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace StringFormatEfficiency{ class Program { stati... 阅读全文
posted @ 2014-08-08 20:43 牧师/preacher 阅读(1552) 评论(2) 推荐(0)
摘要: 如图,现在有两个数据集,左边表示#tempTable1,右边表示#tempTable2。现在有以下问题:1.求两个集的交集?2.求tempTable1中不属于集#tempTable2的集?先创建两张临时表:create table #tempTable1(argument1 nvarchar(50)... 阅读全文
posted @ 2014-08-08 17:56 牧师/preacher 阅读(3862) 评论(0) 推荐(1)
摘要: 输入为带有urldecode转码文本,输出正常文本。 阅读全文
posted @ 2014-08-08 16:29 牧师/preacher 阅读(2135) 评论(0) 推荐(0)
摘要: 创建临时表,#代表局部临时表,##代表全局临时表。局部临时表和全局临时表的具体含义是什么呢?举例说明一下比较清晰些,先来看下局部临时表,【新建查询】,在里面输入如下文本: 运行后,我们在此文件执行输入: select * from #tempTable, 执行后可以查询出如下的数据:我们另外打开一个... 阅读全文
posted @ 2014-08-08 15:17 牧师/preacher 阅读(687) 评论(0) 推荐(0)