Home
Oracle PL / SQL
Aggregate Functions
Analytical Functions
Char Functions
Constraints
Conversion Functions
Cursor
Data Type
Date Timezone
Hierarchical Query
Index
Insert Delete Update
Large Objects
Numeric Math Functions
Object Oriented Database
PL SQL
Regular Expressions
Report Column Page
Result Set
Select Query
Sequence
SQL Plus
Stored Procedure Function
Subquery
System Packages
System Tables Views
Table
Table Joins
Trigger
User Previliege
View
XML
MIN « Aggregate Functions « Oracle PL / SQL
Oracle PL / SQL
Aggregate Functions
MIN
1.
MIN: return the lowest values in a column, ignores NULLs
2.
Syntax: MIN([DISTINCT]|[ALL]
)
3.
To find the price range for the cars on the lot in relation to the manufacturer, the GROUP BY clause must be used
4.
MIN with dates, it gives you the oldest dates
5.
MIN with character data, retrieves the lowest value alphabetically (that is, closest to 'a')
6.
Example using the MIN function with having clause
7.
Example using the MIN function with group by clause
8.
Min with null value