compare field with current date

I'm trying to compare a field birth_date which I have converted to just show the month and day as DATE_FORMAT(`birth_date`,'%m/%d') with the current date to only return the records where their birthdate = the current day I tried the following but didn't work
if DATE_FORMAT(`birth_date`,'%m/%d') = DATE_FORMAT(CURRENT_DATE(), '%m/%d') THEN 'Yes' else 'No'
any help would be appreciated.
Best Answer
-
Looks basically ok to me. Maybe try a case statement instead.
CASEWHEN
DATE_FORMAT(`birth_date`,'%m/%d') = DATE_FORMAT(CURRENT_DATE(), '%m/%d')
THEN 'Yes'
ELSE 'No'
END
If that doesn't work, replace the date logic with something like
month(`birth_date`) = month(current_date()) and dayofmonth(`birth_date`) = dayofmonth(current_date())
Aaron
MajorDomo @ Merit Medical
**Say "Thanks" by clicking the heart in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"0
Answers
-
You'll want to use a CASE WHEN statement like this:
CASE WHEN DATE_FORMAT(`birth_date`,'%m/%d') = DATE_FORMAT(CURRENT_DATE(), '%m/%d') THEN 'Yes' else 'No' END
Give that a shot and let me know if you need anything else,
Valiant_Ronin
0 -
You'll want to use a CASE WHEN statement like this:
CASE WHEN DATE_FORMAT(`birth_date`,'%m/%d') = DATE_FORMAT(CURRENT_DATE(), '%m/%d') THEN 'Yes' else 'No' END
Give that a shot and let me know if you need anything else,
Valiant_Ronin
**Please mark "Accept as Solution" if this post solves your problem
**Say "Thanks" by clicking the "heart" in the post that helped you.0 -
Looks basically ok to me. Maybe try a case statement instead.
CASEWHEN
DATE_FORMAT(`birth_date`,'%m/%d') = DATE_FORMAT(CURRENT_DATE(), '%m/%d')
THEN 'Yes'
ELSE 'No'
END
If that doesn't work, replace the date logic with something like
month(`birth_date`) = month(current_date()) and dayofmonth(`birth_date`) = dayofmonth(current_date())
Aaron
MajorDomo @ Merit Medical
**Say "Thanks" by clicking the heart in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"0 -
I got it...just as you suggested...thanks
1
Categories
- All Categories
- Product Ideas
- 2.1K Ideas Exchange
- Connect
- 1.3K Connectors
- 309 Workbench
- 7 Cloud Amplifier
- 10 Federated
- Transform
- 665 Datasets
- 120 SQL DataFlows
- 2.3K Magic ETL
- 827 Beast Mode
- Visualize
- 2.6K Charting
- 90 App Studio
- 46 Variables
- Automate
- 198 Apps
- 488 APIs & Domo Developer
- 97 Workflows
- 24 Code Engine
- AI and Machine Learning
- 23 AI Chat
- 4 AI Projects and Models
- 18 Jupyter Workspaces
- Distribute
- 119 Domo Everywhere
- 283 Scheduled Reports
- 11 Software Integrations
- Manage
- 145 Governance & Security
- 13 Domo Community Gallery
- 49 Product Releases
- 13 Domo University
- Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 116 Community Announcements
- 5K Archive