©SQL :: Manager
HomeProgram InformationTechnical detailsFree downloadDonate for a cup of coffee
myway SQL Manager for MySQL and MariaDB, Download on Uptodown
Aggregate functions in MySQL, MariaDB

MySQL and MariaDB - Overview of the Aggregate functions

MySQL and MariaDB provides a set of aggregate functions that can be used to perform calculations on a set of rows and return a single result. Aggregate functions can be useful when working with large sets of data and performing calculations on that data. They can be used to calculate statistics, summarize data, and perform other types of analysis. However, it is important to use them carefully and to ensure that they are used appropriately for the specific use case. Additionally, it is important to be aware of any limitations or performance considerations when using aggregate functions on large datasets.
Aggregat-Funktionen

ANY_VALUEANY_VALUE(Column)
Unterdrückt die Wertzurückweisung ONLY_FULL_GROUP_BY.
More about ANY_VALUE Function
AVGAVG(Expression or column)
Gibt den Durchschnittswert des Arguments zurück.
More about AVG Function
BIT_ANDBIT_AND(Expression or column)
Gebt bitweises UND zurück.
More about BIT_AND Function
BIT_ORBIT_OR(Expression or column)
Gibt bitweises ODER zurück.
More about BIT_OR Function
BIT_XORBIT_XOR(Expression or column)
Gibt bitweises XOR zurück.
More about BIT_XOR Function
COUNTCOUNT(Expression or column)
Gibt die Anzahl der zurückgegebenen Zeilen zurück.
More about COUNT Function
GROUP_CONCATGROUP_CONCAT([DISTINCT] Expression [, Expression ...] [ORDER BY ... [ASC | DESC]] [SEPARATOR ...] [LIMIT ...])
Gibt eine verkettete Zeichenfolge zurück.
More about GROUP_CONCAT Function
JSON_ARRAYAGGJSON_ARRAYAGG(Expression or column)
Ergebnismenge als einzelnes JSON-Array zurückgeben.
JSON_OBJECTAGGJSON_OBJECTAGG(Expression or column)
Gibt Ergebnismenge als einzelnes JSON-Objekt zurück.
MAXMAX(Expression or column)
Gibt den Maximalwert zurück.
More about MAX Function
MINMIN(Expression or column)
Gibt den Mindestwert zurück.
More about MIN Function
SUMSUM(Expression or column)
Gibt die Summe zurück.
More about SUM Function
STDSTD(Expression or column)
Gibt die Populationsstandardabweichung zurück.
More about STD Function

Synonyms:STDDEV, STDDEV_POP
STDDEVSTDDEV(Expression or column)
Gibt die Populationsstandardabweichung zurück.
More about STDDEV Function

Synonyms:STDDEV_POP, STD
STDDEV_POPSTDDEV_POP(Expression or column)
Gibt die Populationsstandardabweichung zurück.
More about STDDEV_POP Function

Synonyms:STDDEV, STD
STDDEV_SAMPSTDDEV_SAMP(Expression or column)
Geben Sie die Standardabweichung der Stichprobe zurück.
More about STDDEV_SAMP Function
VAR_POPVAR_POP(Expression or column)
Gibt die Populationsvarianz von Nicht-NULL-Datensätzen in einer Gruppe zurück.
More about VAR_POP Function

Synonyms:VARIANCE
VAR_SAMPVAR_SAMP(Expression or column)
Gibt die Stichproben- und Populationsabweichung eines Satzes numerischer Werte zurück, entspricht der Quadratwurzel der Stichprobenstandardabweichung der Werte.
More about VAR_SAMP Function
VARIANCEVARIANCE(Expression or column)
Gibt die Stichproben- und Populationsabweichung eines Satzes numerischer Werte zurück, entspricht der Quadratwurzel der Stichprobenstandardabweichung der Werte.
More about VARIANCE Function

Synonyms:VAR_POP


See also: List of all MySQL and MariaDB built-in functions
Updated: 2023-09-22ImprintContactTerms & conditionsPrivacy & CookiesUpdatesSitemapFacebookLinkedinTwitterStatistics©2020-2024 Heino Cunze-Fischer