-- create a table CREATE TABLE persons (personID int, Lname varchar(30), Fname varchar(30), Age int); -- insert some values INSERT INTO persons VALUES (1, 'Hansen', 'Ola','30'); INSERT INTO persons VALUES (2, 'Svendson', 'Tove', '23'); INSERT INTO persons VALUES (3, 'Pettersen', 'Kari', '20'); -- fetch some values SELECT * FROM persons Details
To embed this project on your website, copy the following code and paste it into your website's HTML: