1: using System; 2: using
System.Collections.Generic; 3: using System.Linq; 4: using System.Text; 5: using
System.Text.RegularExpressions; 6: using Sy...
分类:
其他好文 时间:
2014-05-09 23:52:24
阅读次数:
543
Student表有3个字段:id,name,age看这两个SQL语句(1)select
name from student order by id;(2)select distinct(name) from student order by
id;执行结果你可能会说:第1句返回以id排序的所有nam...
分类:
其他好文 时间:
2014-05-09 23:42:19
阅读次数:
368
select Category from(select distinct Category from
T_Detail where CREATED_BY= @CREATED_BY AND RecordDate>=@RecordDate1 AND
RecordDate<@RecordDate2)t g...
分类:
数据库 时间:
2014-05-09 19:18:43
阅读次数:
339
1 using System; 2 using System.Collections.Generic;
3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6
using System.Linq; ....
分类:
其他好文 时间:
2014-05-09 16:00:14
阅读次数:
209
一、基础技术选型 C# .NET 3.5/4.0 这两个版本的.NET已经相当方便(Linq,
Lambda,Parallel),语法简洁,配合WCF和WF两项技术,可以满足快速开发,维护方便的目标。 Win Form
因ERP项目涉及大量的表单(Entry),查询(Enquiry),报表(Repo...
分类:
其他好文 时间:
2014-05-09 15:56:54
阅读次数:
352
using System;using
System.Collections.Generic;using System.Linq;using System.Text;using
System.Threading.Tasks;namespace OverrideTest{ class A {...
分类:
其他好文 时间:
2014-05-09 13:43:24
阅读次数:
291
第七章 代理(1)一、代理要声明二、代理使用步骤声明代理初始化代理(使用 实例的方法名
作为参数)使用代理代码示例:/*C7.1.2*/using System;using System.Collections.Generic;using
System.Linq;using System.Text;...
分类:
其他好文 时间:
2014-05-09 10:03:41
阅读次数:
449
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Threading.Tasks;using
System.Threading;using System.Run...
分类:
其他好文 时间:
2014-05-09 07:46:58
阅读次数:
370
在使用mysql时,有时需要查询出某个字段不重复的记录,虽然mysql提供
有distinct这个关键字来过滤掉多余的重复记录只保留一条,但往往只用它来返回不重复记录的条数,而不是用它来返回不重记录的所有值。其原因是
distinct只能返回它的目标字段,而无法返回其它字段,这个问题让我困扰了很久....
分类:
数据库 时间:
2014-05-09 05:35:49
阅读次数:
465
这道题的做法,一定得掌握啊!!! elegant & beautiful &
concise下面是AC代码: 1 /** 2 * Given a set of distinct integers, S, return all
possible subsets. 3 * 这道...
分类:
其他好文 时间:
2014-05-08 22:44:57
阅读次数:
424