Edge Rewrite
// HTMLRewriter · presentation

This page was redesigned at the edge.

Cloudflare fetched the original article and streamed it through HTMLRewriter to apply an entirely new visual system without rebuilding the source page.

// request.cf · coarse context

A page that knows where it met you.

Only coarse request metadata is shown. This demo does not display or persist visitor IP addresses.

Country
US
Cloudflare location
CMH
Connection
HTTP/2
Language
Not provided

Ray ID: a21f13d93851c6fa

Jump to content

Result set

From Wikipedia, the free encyclopedia

A result set is the set of results returned by a query, usually in the same format as the database the query is called on.[1] For example, in SQL, which is used in conjunction with relational databases, it is the result of a SELECT query on a table or view and is itself a non-permanent table of rows, and could include metadata about the query such as the column names, and the types and sizes of each column. In an object database, the result set is usually a collection of objects from the database.

Depending on the database, the number of rows in the result set may or may not be known. Usually, this number is not known up front because the result set is built on the fly. A cursor can be used by client applications to fetch a few rows of the result set at a time.[2]

Sorting

[edit]

In SQL, there is no guarantee that the rows of a result set returned by a SELECT query are in any particular order unless the ORDER BY clause is used in the query, which sorts the rows of the result set in ascending or descending order based on one or more columns.[2]

References

[edit]
  1. Beaulieu, Alan (2020). "Chapter 1. A Little Background". Learning SQL, 3rd Edition (3rd ed.). O'Reilly Media. ISBN 9781492057611. OCLC 1138944140.
  2. 1 2 Database Fundamentals (PDF) (1st ed.). IBM Corporation. 2010. pp. 122–123.