Difference between revisions of "MINVALUES()"
Helengeorge (Talk | contribs) |
Barrymavin (Talk | contribs) (→See Also) |
||
Line 8: | Line 8: | ||
==See Also== | ==See Also== | ||
− | [[AMAX()]], [[AMIN()]], [[AVERAGE]], [[AVGVALUES()]], [[CNTVALUES()]], [[COUNT]], [[MAX()]], [[MAXVALUES()]], [[MIN()]], [[SQLVALUES()]], [[SUM]], [[SUMVALUES()]], [[TOTAL]] | + | [[AMAX()]], [[AMIN()]], [[AVERAGE]], [[AVGVALUES()]], [[CNTVALUES()]], [[COUNT]], [[MAX()]], [[MAXVALUES()]], [[MIN()]], [[SQLVALUES()]], [[SUM]], [[SUMVALUES()]], [[TOTAL]], [[ALLVALUES()]] |
− | + | ||
==Description== | ==Description== |
Revision as of 04:42, 20 June 2010
Purpose
Function to returns the minimum numeric value for a matching series of keys
Syntax
MINVALUES(<expN> [, <for condition> [, <key expr>]])
See Also
AMAX(), AMIN(), AVERAGE, AVGVALUES(), CNTVALUES(), COUNT, MAX(), MAXVALUES(), MIN(), SQLVALUES(), SUM, SUMVALUES(), TOTAL, ALLVALUES()
Description
The MINVALUES() function returns the minimum value of <expN> for a matching series of keys. The required <expN> parameter must be a column name from a table. If none of the optional parameters are specified, then the minimum value of keys matching the current key is returned. An optional <for condition> can be specified to restrict the rows included in the operation. You can also optionally specify a <key expression> to be used instead of the current key.
After completion, all record pointers and indexes are returned to their original positions.
Example
use customer order title // Minimum value of balance column for the number of records matching the current key total_balance = minvalues(balance) // Minimum value of balance column for the number of records matching the key "Mr" m_male = minvalues(balance, .T., "Mr") // Minimum value of balance column for the number of records matching the current key with an expiry date < today m_expired = minvalues(balance, expiry<date())
Products
Recital Server, Recital