CREATE TABLE students (
  id INTEGER PRIMARY KEY,
  name TEXT NOT NULL,
  subject TEXT NOT NULL,
  marks TEXT NOT NULL  
);
INSERT INTO students VALUES (1, 'CYRIL', 'Math','95');
INSERT INTO students VALUES (2, 'JOSHUA', 'SCIENCE','96');
INSERT INTO students VALUES (3, 'DESHVA','ENGLISH','99.5');
INSERT INTO students VALUES (4, 'BEN','SST','90');
INSERT INTO students VALUES (5, 'VYSHVIK','HINDI','97.5');
SELECT * FROM students 

Embed on website

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