
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to change format of dates in a table column with a MySQL query?
To change format of dates, use the DATE_FORMAT() function. Let us first create a table −
mysql> create table DemoTable1906 ( DueTime datetime ); Query OK, 0 rows affected (0.00 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable1906 values(now()); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1906 values(curdate()); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1906 values('2017-10-11'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1906 values('2015-01-12'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1906 values('2018-04-25'); Query OK, 1 row affected (0.00 sec)
Display all records from the table using select statement −
mysql> select * from DemoTable1906;
This will produce the following output −
+---------------------+ | DueTime | +---------------------+ | 2019-12-11 13:54:22 | | 2019-12-11 00:00:00 | | 2017-10-11 00:00:00 | | 2015-01-12 00:00:00 | | 2018-04-25 00:00:00 | +---------------------+ 5 rows in set (0.00 sec)
Here is the query to change the format of dates −
mysql> select date_format(DueTime,'%d-%m-%Y') from DemoTable1906;
This will produce the following output −
+---------------------------------+ | date_format(DueTime,'%d-%m-%Y') | +---------------------------------+ | 11-12-2019 | | 11-12-2019 | | 11-10-2017 | | 12-01-2015 | | 25-04-2018 | +---------------------------------+ 5 rows in set (0.00 sec)
- Related Questions & Answers
- Create a temporary table with dates in MySQL
- MySQL select distinct dates from datetime column in a table?
- Change the column name from a MySQL table with Student record?
- Update a MySQL column with JSON format?
- MySQL query to count number of duplicate values in a table column
- How to change date format with DATE_FORMAT() in MySQL?
- Select the table name as a column in a UNION select query with MySQL?
- How to change the column position of MySQL table without losing column data?
- How to change the default charset of a MySQL table?
- How to change the date in a table with date records with MySQL?
- MySQL query to find latest 3 dates in a table and the resultant dates shouldn’t be duplicate
- How can I change the name of an existing column from a MySQL table?
- MySQL query to display structure of a table
- MySQL query to retrieve current date from a list of dates
- MySQL query to select all the records only from a specific column of a table with multiple columns
Advertisements