create table Student(stuedent_id int, student_name varchar(30), address varchar(40), city varchar(30), department_id int); insert into Student values(101, 'Aeysha', 'Nehru nagar', 'Coimbatore', 05); insert into Student values(102, 'Benit', 'Church street', 'Nazareth', 10); insert into Student values(103, 'Cinthiya', 'North street', 'Udankudi', 12); insert into Student values(104, 'Divya', 'Salzer street','Chennai', 20); insert into Student values(105, 'Felci', 'Gandhi puram', 'Bangalore', 26); insert into Student values(106, 'Gayathri', 'East street', 'Chennai', 28); select * from Student;
To embed this project on your website, copy the following code and paste it into your website's HTML: