Toggle navigation
CSHARPEXAMPLE.COM
C-Sharp Basic
SQL-Basic
Linq to SQL
Grid View
DataList
DataTable
Privacy & Policy
About Me
Home
C-Sharp Basic
SQL-Basic
Linq to SQL
Grid View
DataList
DataTable
Ajax Toolkit
HTML
CSS
Privacy & Policy
About
Contact
Posted by :
Anwar Hossain
Category :
Basic sql tutorial for Beginner
How to use MIN () Aggregate Function
Dear viewer I will show how to use MIN () Aggregate Function. MIN () Aggregate Function is used to find the lowest or minimum value from the selected column of a table. By using MIN () aggregate function I will find the lowest given salary of Employee table.
Find MIN Value in MS SQL server
Department Table
Employee Table
SQL MIN() Aggregate Function Syntax
SELECT
MIN
(
Specific_Column_name
)
FROM
table_name
SQL Statement
SELECT
MIN
(
Salary
)
AS
MinimumSalery
FROM
Employee
SQL Statement Result
Search
Realted Article Headline
How to use MIN () Aggregate Function
How to use MAX () Aggregate Function
How to use SUM () aggregate function
how to use AVG () aggregate function
How to use sql alies for sql table
SQL BETWEEN Operators for retrieving range values
FULL OUTER JOIN using two tables in SQL server
LEFT JOIN using two tables in SQL server
How to join two table in sql server
Article Category
How to create asp.net control dynamically
Learn HTML for beginner
DataList example in C Sharp
Mail sending in asp.net c#
State Management in ASP C #
Basic sql tutorial for Beginner
DataTable example in ASP.Net C#
How to use LINQ in ASP.NET C#
asp.net c # basic tutorial
How to use ajax toolkit in asp.net C#
How to use different types of validation control using asp.net c#
How to use grid view in asp.net c#