Page 1 of 1

The Horse table has the following columns; ID-integer, auto increment, primary key string RegisteredName-variable-length

Posted: Mon Jul 11, 2022 9:49 am
by answerhappygod
The Horse Table Has The Following Columns Id Integer Auto Increment Primary Key String Registeredname Variable Length 1
The Horse Table Has The Following Columns Id Integer Auto Increment Primary Key String Registeredname Variable Length 1 (39.1 KiB) Viewed 23 times
The Horse table has the following columns; ID-integer, auto increment, primary key string RegisteredName-variable-length Breed-variable-length string, must be one of the following: Egyptian Arab, Holsteiner, Quarter Horse, Paint, Saddlebred .Height-decimal number, must be between 10.0 and 20.0 . BirthDate-date, must be on or after Jan 1, 2015 Insert the following data into the Horse table . . . RegisteredName Babe Independence Ellie NULL Breed Height BirthDate Quarter Horse 15.3 2015-02-10 Holsteiner 16.0 2011-03-13 Saddlebred 15.0 2016-12-22 Egyptian Arab 14.9 2019-10-12 HINT: The first line of your SQL statement should be. INSERT INTO Horse (RegisteredName, Breed, Height, BirthDate) VALUES HINT: You should have one line for each horse Example: (Babe, Quarter Horse, 15.3. 2015-02-10). HINT: After the final line, add a semicolon () 41134x7