-- -- DROP TABLE cats;
CREATE TABLE cats(
cat_id INT AUTO_INCREMENT PRIMARY KEY,name VARCHAR(100),breed VARCHAR(100),age INT);
-- DESC cats;
-- INSERT INTO cats(name, breed, age)
-- VALUES ('Ringo', 'Tabby', 4),
-- ('Cindy', 'Maine Coon', 10),
-- ('Dumbledore', 'Maine Coon', 11),
-- ('Egg', 'Persian', 4),
-- ('Misty', 'Tabby', 13),
-- ('George Michael', 'Ragdoll', 9),
-- ('Jackson', 'Sphynx', 7);
-- SELECT * FROM cats;
SELECT name From cats;
To embed this project on your website, copy the following code and paste it into your website's HTML: