CREATE TABLE branch (
 branch_name text,
 assets text,
 branch_city text
);
INSERT INTO branch VALUES ('Mahesh nagar', 'M.G. road', 'Indore');
INSERT INTO branch VALUES ('Raj mohlla', 'Bus stand', 'Bhopal');
INSERT INTO branch VALUES ('Rajwada', 'Railway station', 'Dewas');
INSERT INTO branch VALUES ('Gandhi bhawan', 'Cenral library', 'Rewa');
SELECT * FROM branch WHERE branch_city = 'Dewas' ;

Embed on website

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