I would like to know how to query to display the list
if date of user matches with the date dob
in the table
user always have the dateformat as 02 Oct 1992
dd mm yyyy
How to convert the user date format(yyyy mm dd) and check the dob
matches in mysql query
I have date in table as
userdate = 02 Oct 1992
user dob
xyz 1992-10-02
abc 1986-02-06
SELECT * FROM datetable WHERE DATE(str_to_date(userdate, '%Y-%m-%d')) = datetable.dob
currently the query not working
This should do what you want:
SELECT *
FROM datetable
WHERE dob = STR_TO_DATE(userdate, "%d %b %Y");
Example of date parsing for userdate
:
SELECT STR_TO_DATE("02 Oct 1992", "%d %b %Y") as date;
+------------+
| date |
|------------|
| 1992-10-02 |
+------------+
1 row in set
Time: 0.005s