Implementation of comparison, sorting and other operations on varchar type dates in MySQL

Implementation of comparison, sorting and other operations on varchar type dates in MySQL

When using MySQL, dates are generally stored in formats such as datetime and timestamp. However, sometimes due to special needs or historical reasons, the date is stored in varchar format. So how do we handle date data in this varchar format?

Use function: STR_TO_DATE(str, format)

The STR_TO_DATE(str, format) function is the inverse function of the DATE_FORMAT() function. It takes a string str and a format string format. STR_TO_DATE() returns a DATETIME value if the format string contains both date and time parts, or returns a date or time value if the string contains only a date or time part.

Let’s take a case to illustrate this.

For example, I now have a membership table, the structure of the table is as follows:

I created the following data in the table:

Now, if I need to select all members who registered in August 2018 and sort them by registration time, how can I do it? Here is a reference:

SELECT id,nickname,createtime 
FROM member
WHERE str_to_date(createtime, '%Y-%m-%d') BETWEEN str_to_date('2018-08-01', '%Y-%m-%d') AND str_to_date('2018-08-31', '%Y-%m-%d')
ORDER BY str_to_date(createtime, '%Y-%m-%d')

The execution results are as follows:

Summary: The STR_TO_DATE(str, format) function can convert varchar date data in the database into DATETIME date data. During the conversion process, please note that the format parameter must correspond to the format of str. After that, we can perform comparison, sorting and other operations!

This is the end of this article about the implementation of operations such as comparison and sorting of varchar type dates in MySQL. For more relevant mysql varchar type comparison and sorting content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Method for comparing the size of varchar type numbers in MySQL database
  • Some things to note about varchar type in Mysql
  • The difference between char, varchar and text field types in MySQL
  • Mysql varchar type sum example operation
  • MySQL data type varchar detailed explanation

<<:  HTTP return code list (Chinese and English explanation)

>>:  Vue Learning - VueRouter Routing Basics

Recommend

Analyzing the four transaction isolation levels in MySQL through examples

Preface In database operations, in order to effec...

Nginx try_files directive usage examples

Nginx's configuration syntax is flexible and ...

Related operations of adding and deleting indexes in mysql

Table of contents 1. The role of index 2. Creatin...

How to use Typescript to encapsulate local storage

Table of contents Preface Local storage usage sce...

What are the benefits of semantic HTML structure?

one: 1. Semantic tags are just HTML, there is no ...

Sample code using scss in uni-app

Pitfalls encountered I spent the whole afternoon ...

Dealing with the problem of notes details turning gray on web pages

1. In IE, if relative positioning is used, that is...

HTML+CSS project development experience summary (recommended)

I haven’t updated my blog for several days. I jus...

HTML left and right layout example code

CSS: Copy code The code is as follows: html,body{ ...

How to construct a table index in MySQL

Table of contents Supports multiple types of filt...

HTML implementation of a simple calculator with detailed ideas

Copy code The code is as follows: <!DOCTYPE ht...

Detailed explanation of MySQL Truncate usage

Table of contents MySQL Truncate usage 1. Truncat...

How to solve the problem that Docker container has no vim command

Find the problem Today, when I tried to modify th...

Writing a web calculator using javascript

This article mainly records the effect of using j...