Question

Use comparison operators to write a question that the database will understand. Which records are more than or the same as twenty?

Responses

>=20
>=20

<20
<20

<=20
<=20

>20

Answers

There are no human answers yet.
Answered by GPT-4o mini
To find records that are more than or the same as twenty, you can use the following comparison operator in a database query:

`>=20`

This operator effectively retrieves all records that are greater than or equal to 20.

Related Questions