Skip to content
Advertisement

Is there some way to set a date pattern and force a specific day?

I have a complicated select with a lot of inner case within case within case statements to try and figure out the right date, but after all is figured out, it needs to use only the first day of the month.

For instance, I might get 08/10/2018, but I want my end result to be 08/01/2018.

Is it possible to do something along the lines of this below (obviously doesn’t work but looking for suggestions).

In this case, sysdate would be replaced with a big list of case statements and calculations. The only way I see to do it is do

Advertisement

Answer

Here are a few expressions that return the first day of the month for a given date:

Simply:

Or:

Or using LAST_DAY:

Demo on DB Fiddle

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement