count
One of the built-in aggregate functions in relational database systems, that returns the number of rows in a result. The argument to the function is often "*", e.g.
SELECT COUNT(*) FROM bookswhich returns the number of rows in the "books" table. If, instead, we say
SELECT COUNT(publisher) FROM booksthen only rows with a non-null value in the "publisher" column will be counted.
Last updated: 2010-09-26
Nearby terms:
Cougar ♦ cough and die ♦ count ♦ countable ♦ countably many ♦ counted
Try this search on Wikipedia, Wiktionary, Google, OneLook.
Loading