TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
madhu goud
NA
36
14.2k
How to create date columns automatically
Jul 21 2015 3:20 AM
How to create date columns automatically from start date to end date
create table demo table
(
Id int primary key identity(1,1),
Name varchar(50),
StartDate date,
EndDate date
)
i have given start date 1/7/2015 and end date 1/10/2015 , in out put i want to add extra (month wise )columns automatically ,like
ID Name Start Date End Date 1/7/2015 1/8/2015 1/9/2015 1/10/2015
Reply
Answers (
4
)
Please help in Sql query with Group by for given scenario
Regarding user define function??