CREATE TABLE Student_Roll (
  Roll_No PRIMARY KEY,
  Name INTEGER,
  Address Address,
  Phone Phone,
  Age Age
);

-- insert some values
INSERT INTO Student_Roll VALUES ('1', 'Harsh', 'Delhi', 'XXXXXXXXXX', '18');
INSERT INTO Student_Roll VALUES ('2', 'Pratik', 'Birah', 'XXXXXXXXXX', '19');
INSERT INTO Student_Roll VALUES ('3', 'Riyanka', 'Siliguri', 'XXXXXXXXXX', '20');
INSERT INTO Student_Roll VALUES ('4', 'Deep', 'Ramnagar', 'XXXXXXXXXX', '18');
INSERT INTO Student_Roll VALUES ('5', 'Saptarhi', 'Kolkata', 'XXXXXXXXXX', '19');
INSERT INTO Student_Roll VALUES ('6', 'Dhanraj', 'Barabajah', 'XXXXXXXXXX', '20');
INSERT INTO Student_Roll VALUES ('7', 'Rohit', 'Balurghat', 'XXXXXXXXXX', '18');
INSERT INTO Student_Roll VALUES ('8', 'Niraj', 'Alipur', 'XXXXXXXXXX', '19');

-- fetch some values
SELECT * FROM Student_Roll;

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: