Had been trying to figure out a select query to display days of week such as Monday, Tuesday, Wednesday, etc. I ended up with a select query displaying dates of a week,

select ((date_trunc('week',current_date)::date) + (i+6)) as week_date 
  from generate_Series(0,6) i;

Is there a way to get the result as Monday, Tuesday and so on.

link|improve this question
feedback

3 Answers

up vote 0 down vote accepted

You could do just:

VALUES ('Sunday'), ('Monday'), ('Tuesday'), ('Wednesday'), ('Thursday'), ('Friday'), ('Saturday');
link|improve this answer
feedback

Just use extract:

extract(dow from date_column::timestamp)
from whatever_table;

This returns 0 for Sunday, 1 for Monday,...,6 for Saturday.

Edit: Or, since you apparently don't need anything that actually requires grabbing the day of week from a given date and you just want a single column with the fixed string values representing the names of the days of the week, just create a table...

link|improve this answer
Hi jack, I dont want the number values of days, Instead i need the query to return all seven days as 'Sunday''Monday' etc. Can you suggest other possibilities? – Flourida Feb 25 at 6:33
@Flourida - As I pointed out in the comment section of Edwin's answer, if you don't need any of this dynamically generated, then why are you trying to do this in SQL? Just print out the strings "Sunday","Monday", etc, and be done with it. – Jack Maney Feb 25 at 6:35
That prints the value in different columns. how can i get it in single column? – Flourida Feb 25 at 6:39
@Flourida - Make a table with one column. These are fixed strings. There's nothing that you need to dynamically generate. – Jack Maney Feb 25 at 6:40
feedback

The following query also works

select to_char((date_trunc('week',current_date)::date) + i,'Day') as wkday from generate_series(0,6) i
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.