The way to write the select statement has been written below.
<h3>How to write the query</h3>
The query that is going to be written in this statement would be
First use the select command and then add the variables that are of interest.
This would be written as
SELECT
RegisteredName,
Height,
BirthDate
Next you have to specify where you want the select statement to read from so you write
FROM horse
WHERE height BETWEEN 15.0 and 16.0 OR BIRTHDATE >='2020-01-01'.
The query that is written above if followed would show the data that the operator is seeking for.
Read more on python select statements here:
brainly.com/question/14350111
#SPJ1