Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everybody,
I have this problem. I have dates on SQL like this: 2008-06-30 10:10:00
If i create a master calendar using Week, Day, Month, everything is OK.
The problem is that i want now the date WITHOUT hour, minute and seconds but ALSO working the calendar
(because if i convert dates in SQL, then it doesn't work on QV the calendar)
Any help?
Thanks!
I use the function Date (MyDate) for dates without hour, minute and seconds.
You can use the floor function to cut off the time part of a datetime/timestamp value: floor(MyDate) as DateWithoutTime. See this blog post for more information: The Master Time Table
I use the function Date (MyDate) for dates without hour, minute and seconds.
Yeah, thats works fine,
Thanks all