问题:我要获得一个角色下对应的所有用户,需要两表连接查询,虽然返回的只有用户数据,但是我想到若是返回的不只是用户数据,而还要加上角色信息,那么我返回什么类型呢,返回var吗,这样不行. 于是我网上找找是否能返回DataTable呢,这样我不用创建中间类了.然后就找到下面的代码:这是别人写的,高手. using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.R…
连接查询 1.左连接查询: mysql> select stu.*,sc.*,maths+sc.chinese+sc.english from student stu left join score sc on stu.id=sc.id; 注释:stu:为别名.student stu left join score:student:为主表,score为副表显示. left join:为左连接. 两表关联:其ID必须一一对应(stu.id=sc.id): 2.右连接查询: mysql> sele…