Synthesizing Dates or Times Using Formatting Functions : DATE « Date Time « SQL / MySQL

Home
SQL / MySQL
1.Aggregate Functions
2.Backup Load
3.Command MySQL
4.Cursor
5.Data Type
6.Database
7.Date Time
8.Engine
9.Event
10.Flow Control
11.FullText Search
12.Function
13.Geometric
14.I18N
15.Insert Delete Update
16.Join
17.Key
18.Math
19.Procedure Function
20.Regular Expression
21.Select Clause
22.String
23.Table Index
24.Transaction
25.Trigger
26.User Permission
27.View
28.Where Clause
29.XML
SQL / MySQL » Date Time » DATE 
Synthesizing Dates or Times Using Formatting Functions
     
mysql>
mysql> CREATE TABLE date_val
    -> (
    ->  d       DATE
    -> );
Query OK, rows affected (0.00 sec)

mysql>
mysql> INSERT INTO date_val (dVALUES('1864-02-28');
Query OK, row affected (0.00 sec)

mysql> INSERT INTO date_val (dVALUES('1900-01-15');
Query OK, row affected (0.00 sec)

mysql> INSERT INTO date_val (dVALUES('1987-03-05');
Query OK, row affected (0.00 sec)

mysql> INSERT INTO date_val (dVALUES('1999-12-31');
Query OK, row affected (0.00 sec)

mysql> INSERT INTO date_val (dVALUES('2000-06-04');
Query OK, row affected (0.00 sec)

mysql>
mysql> SELECT d, DATE_FORMAT(d,'%Y-%m-01') FROM date_val;
+------------+---------------------------+
| d          | DATE_FORMAT(d,'%Y-%m-01') |
+------------+---------------------------+
1864-02-28 1864-02-01                |
1900-01-15 1900-01-01                |
1987-03-05 1987-03-01                |
1999-12-31 1999-12-01                |
2000-06-04 2000-06-01                |
+------------+---------------------------+
rows in set (0.00 sec)

mysql>
mysql> drop table date_val;
Query OK, rows affected (0.00 sec)

   
    
    
    
    
  
Related examples in the same category
1.Extract just the date: DATE()
2.Treating Dates or Times as Numbers
3.Synthesizing Dates or Times Using Component-Extraction Functions
4.Date-Based Sorting
5.Date-Based Summaries
6.Add an incorrect date to a special table and show the result.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.