呵呵,只能一次执行多个SELECT语句,来生成4个结果集,放到你的dataset中的4个datatable中。
#1.用#2楼的方法封装个存储过程,直接调用即可。
#2.写成一个批SQL,调用即可(把其中的分号换成空格也是可以的,但建议加上,2005版本及以后):
select * from tb where classID=1; select * from tb where classID=2; select * from tb where classID=3; select * from tb where classID=4;