|
|
|
Junior Member
      
Group: Forum Members
Last Login: 4/22/2007 2:58:00 PM
Posts: 18,
Visits: 1
|
|
Needs extract only mondays in 2007.
how can i achevie using Teradata SQL
Thanks Chinna
|
|
|
|
|
Supreme Being
      
Group: Forum Members
Last Login: 6/25/2008 12:53:07 PM
Posts: 118,
Visits: 60
|
|
Chinna,
Your question is very vague. Do you have a table which has a date column and do you want to extract Mondays from those values or in general from calendar view?
Yet I guess this select will help you achieve if you change it according to your needs.
The following SQL extracts all Mondays in the date range mentioned in the where clause.
select * from sys_calendar.calendar where day_of_week=2 and calendar_date between date -77 and date order by 1;
Also check this URL when you have time. http://www.teradataforum.com/attachments/a040409b.doc
Hope this serves your question.
Regards Ramakrishna_Vedantam
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 7/11/2008 10:57:48 AM
Posts: 7,
Visits: 9
|
|
try: select calendar_date from sys_calendar.calendar where day_of_week=2 and year_of_calendar = 2007 order by 1;
|
|
|
|