This Lab CRUD API is a functional REST API and is designed to demonstrate how to build and structure a backend API that performs CRUD operations. CREATE TABLE students ( id INT AUTO_INCREMENT PRIMARY ...
CREATE TABLE Student( STUDENT_ID INT AUTO_INCREMENT PRIMARY KEY, NAME VARCHAR(50), Gender VARCHAR(1), age INT NOT NULL, Academic_Grade VARCHAR(1), Mathsscore int, Sciencescore int, Englishscore int ); ...