-- create a table CREATE TABLE orders (orderID int, orderNumber int, PersonID int); -- insert some values INSERT INTO orders VALUES (1, '77895', '3'); INSERT INTO orders VALUES (2, '44678', '3'); INSERT INTO orders VALUES (3, '22456', '2'); INSERT INTO orders VALUES (4, '24562', '1'); -- fetch some values SELECT * FROM orders Details
To embed this project on your website, copy the following code and paste it into your website's HTML: