摘要: eg:现要求查询出class_id为2的班级中年龄最大的3个学生的姓名 使用SQL语句查询时,代码如下所示。 select top 3 student_name from tb_Student where class_id=2 order by student_age 在Linq中使用Take()方 阅读全文
posted @ 2018-07-21 18:09 Arainzhe 阅读(342) 评论(0) 推荐(0) 编辑