See below for the statement to insert the data values
<h3>How to insert the records?</h3>
To do this, we make use of the insert statement.
This is done using the following syntax:
INSERT INTO table_name (column_name, ...) VALUES (value, ...)
Using the above syntax and the data values, we have the following insert statement.
INSERT INTO Horse (RegisteredName, Breed, Height, BirthDate)
VALUES ('Babe Quarter', 'Horse', '15.3', '2015-02-10'), ('Independence', 'Holsteiner', '16.0', '2017-03-13'), ('Ellie', 'Saddlebred', '15.0', '2016-12-22')
INSERT INTO Horse (Breed, Height, BirthDate) VALUES ('Egyptian Arab', '14.9','2019-10-12')
Read more about SQL at:
brainly.com/question/10097523
#SPJ1