摘要: 1、 查询Student表中的所有记录的Sname、Ssex和Class列。 select sname,ssex,class from student Linq: from s in Students select new { s.SNAME, s.SSEX, s.CLASS } Lambda: Students.Select( s => new { SNAME = s.SNAME,SSEX = s.SSEX,CLASS = s.CLASS }) 2、 查询教师所有的单位即不重复的Depart列。 select distinct depart from teacher Linq: fro 阅读全文
posted @ 2009-12-11 13:54 leeolevis 阅读(337) 评论(0) 推荐(0) 编辑