Tuesday, April 20, 2010

SQL Min() Function

0 comments
Sql Min() frunction is an aggregate function that returns the Lowest value of an expression, to get the minimum value in your statement use this function.


Example:1
Select MIN(sal)
from emp;
Example:2
Select MIN(sales_order_date)
from sales_order

0 comments: