CREATE TABLE Horse ( 
    ID INT AUTO_INCREMENT PRIMARY KEY, 
    RegisteredName VARCHAR(10), 
    Breed VARCHAR(10), 
    Height DECIMAL(3,2), 
    BirthDate DATE
    );

SELECT RegisteredName 
FROM Horse 
ORDER BY BirthDate ASC; 

Embed on website

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