> You can really do it using CASE:
>
> CASE
> WHEN dow() = 0 THEN 6
> ELSE dow() - 1
> END
how good is this solution in regards to performance? i always thought CASE
and the such should only be used for last resorts. and now there is also a
date function involved that gets twice in 6/7 of all cases...
regarding these concerns, can you give me your opinion on this solution i
came up:
SELECT ((date_part('dow', now()) + 6) % 7) AS weekday
thanks,
thomas