Home Sql Mysql-example Mysql Min Date



Mysql Min Date
Posted on: January 24, 2009 at 12:00 AM
Mysql Min Date is used to return the minimum date record from table Employee.

Mysql Min Date

     

Mysql Min Date is used to return the minimum date record from table Employee.

Understand with Example

The Tutorial illustrate an example from Mysql Min Date. To understand example we create a table 'Employee' with required fieldnames and datatypes respectively.

Query for creating table name Employee:

mysql> CREATE TABLE Employee(
    ->              Empid int(10),
    ->              Empname varchar(60),
    ->              Salary int(90),
    ->              DOB date
    ->            );
Query OK, 0 rows affected (0.01 sec)

Query for  insertion of data in table:

The Query insert into add the records or rows to the table 'Employee'

mysql>     INSERT INTO Employee (Empid,Empname,Salary,DOB) VALUES
    ->     (01,'Habib',2014,20041202),
    ->     (02,'Karan',4021,20030411),
    ->     (03,'Samia', 22,20080223),
    ->     (04,'Hui Ling', 25,20081015),
    ->     (05,'Yumie', 29,19990126);
Query OK, 5 rows affected (0.00 sec)
Records: 5  Duplicates: 0  Warnings: 0

Query to view data inserted in table:

The Query is used to view the data inserted in the table 'Employee'.

mysql> select * from Employee;

Output:-

+-------+----------+--------+------------+
| Empid | Empname  | Salary | DOB        |
+-------+----------+--------+------------+
|     1 | Habib    |   2014 | 2004-12-02 |
|     2 | Karan    |   4021 | 2003-04-11 |
|     3 | Samia    |     22 | 2008-02-23 |
|     4 | Hui Ling |     25 | 2008-10-15 |
|     5 | Yumie    |     29 | 1999-01-26 |
+-------+----------+--------+------------+
5 rows in set (0.00 sec)

Query to find min date from the table:

The Query is used to find the minimum date records value from table 'Employee'.

mysql> select min(DOB)as Mindate from Employee;
+------------+
| Mindate    |
+------------+
| 1999-01-26 |
+------------+
1 row in set (0.00 sec)

Related Tags for Mysql Min Date:
sqlmysqlctabledatesedreturntabrecordtoinieuseimfrominmminimumminminemsurneeatmyismplssrdthabablplmiomo


More Tutorials from this section

Ask Questions?    Discuss: Mysql Min Date  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.