⟩ Tell us what is the usage of AVG() function in MariaDB database?
MariaDB AVG() function is used to retrieve the average value of an expression.
Syntax:
SELECT AVG(aggregate_expression)
FROM tables
[WHERE conditions];
MariaDB AVG() function is used to retrieve the average value of an expression.
Syntax:
SELECT AVG(aggregate_expression)
FROM tables
[WHERE conditions];
How to run SQL Server 2005 Books Online on your local system?
How to use Transact-SQL statements to access the database engine?
How to create new databases with "CREATE DATABASE" statements?
How to create new table with "CREATE TABLE" statements?
How to insert and update data into a table with "INSERT" and "UPDATE" statements?
How to read data in a table with "SELECT" statements?
How to create a login account in MS SQL Server to access the database engine using "CREATE LOGIN" statements?
How to create a user to access a database in MS SQL Server using "CREATE USER" statements?
How to create a view and a stored procedure in MS SQL Server using "CREATE VIEW/PROCEDURE" statements?
How to grant a permission in MS SQL Server using "GRANT EXECUTE" statements?