What are aggregate functions in mysql?



What are aggregate functions in mysql?..

Answer / hrindows@gmail.com

The MySQL aggregate function performs a calculation on a set of values, and it returns a single value as output. It ignores NULL values when it performs calculation except for the COUNT function.
MYSQL Aggregrate functions are listed below:
 AVG()
 COUNT()
 SUM()
 MIN()
 MAX()

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More MySQL Interview Questions

What is pragma exception?

0 Answers  


How to convert character strings to numeric values?

0 Answers  


How to use count function in mysql?

0 Answers  


What command is used to delete the data from the table without deleting the table structure?

0 Answers  


Suppose you have to collect the first name, middle name and the last name of students from the below table. But, you observe that there few missing values either in the first name, middle name and the last name columns. How will you return the first non-null values?

0 Answers  


How to get help information from the server?

0 Answers  


What are stored procedures and functions?

0 Answers  


Write a program using the select statement, while loop.

0 Answers  


How do I insert multiple rows in a table?

0 Answers  


Where is mysql data stored linux?

0 Answers  


What is the password of mysql?

0 Answers  


List the different types of normalization?

0 Answers  


Categories