-- create a table
CREATE TABLE students (
  id int primary key,
  age int 
);
-- insert some values
INSERT INTO students VALUES (1,12);
INSERT INTO students VALUES (2,15);
-- fetch some values
SELECT * FROM students
    
create table course (
    cn varchar(50),
    id int,
    foreign key (id) references students(id)
    );
)

Embed on website

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