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

ALTER TABLE Horse 
MODIFY COLUMN Breed VARCHAR(15); 

Embed on website

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