Using MYSQL transform how would I convert a date field mm/dd/yyyy to mm/yyyy?
Using MYSQL transform how would I convert/create a date field changing mm/dd/yyyy to mm/yyyy?
Best Answer
-
If you're using a BeastMode formulat for this, the format would be something like this:
DATE_FORMAT(`Date Field`, '%m/%Y')
Or if you're doing a transform, you can just add this into your select statement like this:
SELECT DATE_FORMAT(`Date Field`, '%m/%Y') AS 'New Date' FROM Table
If you're field is a text field and you need to convert to a date before formatting you can do something like this:
DATE_FORMAT(STR_TO_DATE(`Date Field`,'%m/%d/%Y'), '%m/%Y')
Let me know if you have any questions. Hope this helps.
**Please mark "Accept as Solution" if this post solves your problem
**Say "Thanks" by clicking the thumbs up if this post helped you.1
Answers
-
If you're using a BeastMode formulat for this, the format would be something like this:
DATE_FORMAT(`Date Field`, '%m/%Y')
Or if you're doing a transform, you can just add this into your select statement like this:
SELECT DATE_FORMAT(`Date Field`, '%m/%Y') AS 'New Date' FROM Table
If you're field is a text field and you need to convert to a date before formatting you can do something like this:
DATE_FORMAT(STR_TO_DATE(`Date Field`,'%m/%d/%Y'), '%m/%Y')
Let me know if you have any questions. Hope this helps.
**Please mark "Accept as Solution" if this post solves your problem
**Say "Thanks" by clicking the thumbs up if this post helped you.1
Categories
- 10.5K All Categories
- 5 Connect
- 915 Connectors
- 250 Workbench
- 459 Transform
- 1.7K Magic ETL
- 69 SQL DataFlows
- 476 Datasets
- 186 Visualize
- 250 Beast Mode
- 2.1K Charting
- 11 Variables
- 16 Automate
- 354 APIs & Domo Developer
- 88 Apps
- 3 Workflows
- 20 Predict
- 5 Jupyter Workspaces
- 15 R & Python Tiles
- 245 Distribute
- 62 Domo Everywhere
- 242 Scheduled Reports
- 20 Manage
- 41 Governance & Security
- 170 Product Ideas
- 1.2K Ideas Exchange
- 10 Community Forums
- 27 Getting Started
- 14 Community Member Introductions
- 55 Community News
- 4.5K Archive