Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Range query (database)
Database operation that retrieves all records between an upper and lower value boundary

A range query is a common database operation that retrieves all records where some value is between an upper and lower boundary. For example, list all employees with 3 to 5 years' experience. Range queries are unusual because it is not generally known in advance how many entries a range query will return, or if it will return any at all. Many other queries, such as the top ten most senior employees, or the newest employee, can be done more efficiently because there is an upper bound to the number of results they will return. A query that returns exactly one result is sometimes called a singleton.

We don't have any images related to Range query (database) yet.
We don't have any YouTube videos related to Range query (database) yet.
We don't have any PDF documents related to Range query (database) yet.
We don't have any Books related to Range query (database) yet.
We don't have any archived web articles related to Range query (database) yet.

Partial match query

Match at least one of the requested keys.

See also

References

  1. "SQL BETWEEN Operator". W3Schools. Retrieved 4 November 2014. https://www.w3schools.com/sql/sql_between.asp