Sunday, 9 October 2011

SQL- Aggregate Functions- MIN()

nThe MIN() function returns the smallest value of the selected column.
Syntax:
SELECT MIN(column_name) FROM table_name
Query:
SELECT MIN(Salary) AS Employee salary FROM EMPtbl1

No comments:

Post a Comment