Decomposing Dates or Times Using Component-Extraction Functions : HOUR « 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 » HOUR 
Decomposing Dates or Times Using Component-Extraction Functions
     
mysql>
Function                  Return Value
YEAR( )                   Year of date
MONTH( )                  Month number (1..12)
MONTHNAME( )              Month name (January..December)
DAYOFMONTH( )             Day of month (1..31)
DAYNAME( )                Day of week (Sunday..Saturday)
DAYOFWEEK( )              Day of week (1..7 for Sunday..Saturday)
WEEKDAY( )                Day of week (0..6 for Monday..Sunday)
DAYOFYEAR( )              Day of year (1..366)
HOUR( )                   Hour of time (0..23)
MINUTE( )                 Minute of time (0..59)
SECOND( )                 Second of time (0..59)
mysql>
mysql> CREATE TABLE datetime_val
    -> (
    ->  dt      DATETIME
    -> );
Query OK, rows affected (0.00 sec)

mysql>
mysql>
mysql> INSERT INTO datetime_val (dtVALUES('1970-01-01 00:00:00');
Query OK, row affected (0.00 sec)

mysql> INSERT INTO datetime_val (dtVALUES('1987-03-05 12:30:15');
Query OK, row affected (0.00 sec)

mysql> INSERT INTO datetime_val (dtVALUES('1999-12-31 09:00:00');
Query OK, row affected (0.00 sec)

mysql> INSERT INTO datetime_val (dtVALUES('2000-06-04 15:45:30');
Query OK, row affected (0.00 sec)

mysql>
mysql> SELECT FROM datetime_val;
+---------------------+
| dt                  |
+---------------------+
1970-01-01 00:00:00 |
1987-03-05 12:30:15 |
1999-12-31 09:00:00 |
2000-06-04 15:45:30 |
+---------------------+
rows in set (0.00 sec)

mysql>
mysql>
mysql> SELECT dt,
    -> YEAR(dt), DAYOFMONTH(dt),
    -> HOUR(dt), SECOND(dt)
    -> FROM datetime_val;
+---------------------+----------+----------------+----------+------------+
| dt                  | YEAR(dt| DAYOFMONTH(dt| HOUR(dt| SECOND(dt|
+---------------------+----------+----------------+----------+------------+
1970-01-01 00:00:00 |     1970 |              |        |          |
1987-03-05 12:30:15 |     1987 |              |       12 |         15 |
1999-12-31 09:00:00 |     1999 |             31 |        |          |
2000-06-04 15:45:30 |     2000 |              |       15 |         30 |
+---------------------+----------+----------------+----------+------------+
rows in set (0.00 sec)

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

   
    
    
    
    
  
Related examples in the same category
1.Extract the hour from the time value: HOUR(
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.