-- create a table
CREATE TABLE de (department_id int, department_name varchar(30), department_block_number int);
-- insert some values
INSERT INTO de VALUES (1, 'CSE', 3);
INSERT INTO de VALUES (2, 'IT', 3);
INSERT INTO de VALUES (3, 'SE', 3);
-- fetch some values
SELECT * FROM de ;

Embed on website

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