SQL Problem of the day #3
Problem statement: Find the Topper of Each Class (Student who scored rank 1)
Table creation and data insertion script:
CREATE TABLE student(
enroll_no int PRIMARY KEY IDENTITY(1,1),
name varchar(100),
class varchar(100),
total_marks int
);
INS...
ishwarkoki.hashnode.dev2 min read