李空

博客园 首页 新随笔 联系 订阅 管理

2013年12月25日 #

摘要: --1,我们先建一个表:Student(id,content /xml)Create table Student( StudentID int primary key , StudentInfor xml)--2,插入数据insert into dbo.Student values(100,'小李221990-03-3小王211983-03-3') 小王 22 1990-03-3 这是一个神奇的网站! 21 1983-03-3 -- 2,添加学生节点,就是添加一个学生,用到modify的insert into语句,后面的/为xml节点的路径。u... 阅读全文
posted @ 2013-12-25 16:50 李空 阅读(293) 评论(0) 推荐(1) 编辑

摘要: //输出体重最大的同学,并要求最大体重得大于39,并按照体重大下,对分组结果进行排序。 var result = from query in linq.Student group query by query.ClassID into gS where gS.Max(s => s.StudentWeigth) > 39 orderby gS.Max(s => s.St... 阅读全文
posted @ 2013-12-25 15:41 李空 阅读(364) 评论(0) 推荐(0) 编辑