02 Mar 2007
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.
09 Mar 2007
try:
select calendar_date
from sys_calendar.calendar
where day_of_week=2
and year_of_calendar = 2007
order by 1;
You must sign in to leave a comment.

Needs extract only mondays in 2007.
how can i achevie using Teradata SQL
Thanks
Chinna