Please help i wanted to have a cover page for each student report and the students marks going on the second page i would want the student name , class and photo to be on the cover page and the performace to be on second page please help.
| 001 |
MUKASA PETER |
P1 |
A |
100 |
1 |
100 |
1 |
100 |
1 |
100 |
1 |
400 |
NULL |
1 |
| 002 |
MUBIRU HASSAN |
P1 |
A |
100 |
1 |
99 |
1 |
99 |
1 |
99 |
1 |
397 |
NULL |
2 |
| 003 |
MUNGI PETER |
P2 |
A |
100 |
1 |
100 |
1 |
100 |
1 |
100 |
1 |
400 |
NULL |
3 |
| 004 |
MWAKA HASSAN |
P2 |
A |
100 |
1 |
99 |
1 |
99 |
1 |
99 |
1 |
397 |
NULL |
4 |
|
here is my sample students table
USE [SAMPLE]
GO
/****** Object: Table [dbo].[Student] Script Date: 11/04/2026 01:20:14 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Student](
[admno] [nvarchar](50) NULL,
[Name] [nvarchar](50) NULL,
[Class] [nvarchar](50) NULL,
[Stream] [nvarchar](50) NULL,
[English] [int] NULL,
[agg] [int] NULL,
[Science] [int] NULL,
[scieagg] [int] NULL,
[Maths] [int] NULL,
[mtagg] [int] NULL,
[sst] [int] NULL,
[sstagg] [int] NULL,
[Total] [int] NULL,
[Photo] [image] NULL,
[atk] [int] IDENTITY(1,1) NOT NULL,
CONSTRAINT [PK_Student] PRIMARY KEY CLUSTERED
(
[atk] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO