How can I get only the Date part of a DateTime ? I'm searching for something like year() function but for the whole date.
feedback
|
|
The solution you want is the one proposed here: Basically, you do this:
There is a function definition in the link which will allow you to consolidate the functionality and call it anywhere (instead of having to remember it) if you wish. | |||
|
feedback
|
|
Another nifty way is:
Which gets the number of days from DAY 0 to YourDate and the adds it to DAY 0 to set the baseline again. This method (or "derivatives" hereof) can be used for a bunch of other date manipulation. Edit: True, Joe, it does not add it to DAY 0, it adds 0 (days) to the number of days which basically just converts it back to a datetime. | ||||
feedback
|
|
This may not be as slick as a one-liner, but I use it to perform date manipulation mainly for reports:
I use this to get hourly, daily, monthly, and yearly dates used for reporting and performance indicators, etc. | |||
|
feedback
|
|
In case any one is interested in achieving the same via jpa/hibernate, this "article" might help you. | |||
|
feedback
|
|
We can use this method:
Last parameter changes the format to only to get time or date in specific formats. | ||||
|
feedback
|