摘要: 我们准备报表使用的表数据(sql server) --创建学生表 create table Student( stuId int identity primary key, stuCode varchar(20) not null, stuName varchar(20) not null, stu 阅读全文
posted @ 2023-05-15 11:22 小小邪 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 1、准备分组报告的数据(在sql server中准备如下表格) 2、准备分组报表的数据的SQL select aa.teaId,aa.teaCode,aa.teaName,aa.stuId,aa.stuCode,aa.stuName from( select a.stuId,a.stuCode,a. 阅读全文
posted @ 2023-05-15 11:05 小小邪 阅读(95) 评论(0) 推荐(0) 编辑