-- create a table
CREATE TABLE company (
name char (25) ,
sex char (1),
pin_code integer,
address char(20),
phone_no integer 
);
-- insert values 
INSERT INTO company
VALUES ('B','F',143,'RYGD',100)

Embed on website

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