Question : How do i repeat X rows in one table per row in another table

I have 2 tables... one with userIDs and the other with Weekdays.

e.g

--UserIDs Table--

UserID
111
112
113
114


--WeekDays Table-- (a table variable)
Day
Monday
Tuesday
Wednesday


I need to get a resultset as follows:

UserID   Week    Day
111      1       Monday
111      1       Tuesday
111      1       Wednesday
111      2       Monday
111      2       Tuesday
111      2       Wednesday
111      3       Monday
111      3       Tuesday
111      3       Wednesday
113      1       Monday
113      1       Tuesday
113      1       Wednesday
113      2       Monday
113      2       Tuesday
113      2       Wednesday
113      3       Monday
113      3       Tuesday
113      3       Wednesday


Is this possible?

Answer : How do i repeat X rows in one table per row in another table

Just issue,

SELECT UserID, Days
FROM UserID CROSS JOIN WeekDays

to obtain

UserID   Days
111      Monday
111      Tuesday
111      Wednesday
112      Monday
112      Tuesday
112      Wednesday
113      Monday
113      Tuesday
113      Wednesday
114      Monday
114      Tuesday
114      Wednesday

Can you specify your complete requirement so that it can be tried across.
Random Solutions  
 
programming4us programming4us