码迷,mamicode.com
首页 >  
搜索关键字:linq distinct    ( 10194个结果
日历类
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
ORA-01791: not a SELECTed expression
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
SQL Server select 将类型相同的行合并
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
企业应用开发ERP项目中应用到的技术和工具
一、基础技术选型 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
C# 虚方法的重载 new 与 virtual
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
Csharp 高级编程 C7.1.2
第七章 代理(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 去除重复 Select中DISTINCT关键字的用法
在使用mysql时,有时需要查询出某个字段不重复的记录,虽然mysql提供 有distinct这个关键字来过滤掉多余的重复记录只保留一条,但往往只用它来返回不重复记录的条数,而不是用它来返回不重记录的所有值。其原因是 distinct只能返回它的目标字段,而无法返回其它字段,这个问题让我困扰了很久....
分类:数据库   时间:2014-05-09 05:35:49    阅读次数:465
LeetCode OJ - Subsets 1 && 2
这道题的做法,一定得掌握啊!!! 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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!