SQL

SQL SUM() Function

Jun 27,92

The SQL SUM() function is used to return the total of all values in the specific table column. The syntax is: …

Read More

SQL MIN() Function

Jun 27,92

The MIN() function returns the lowest value of the selected column. The syntax: SELECT MIN (column1) FROM table; Let’s say …

Read More

The MAX() Function

Jun 27,92

The SQL MAX() function returns the highest value of the selected column. The syntax: SELECT MAX(column1) FROM table; Here is …

Read More

SQL COUNT() Function

Jun 27,92

The SQL COUNT() function can be used in two ways: COUNT(*) – counts the number of rows in a table …

Read More

SQL AVG() Function

Jun 27,92

The AVG() function is used to return the average value of a specific numeric column in the table. The syntax: …

Read More

SQL Functions

Jun 27,92

Just like any other computer language, SQL supports the use of functions to manipulate with data. Function is a simple …

Read More
Geek University 2022