Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. select d.FullDate,
  2. a.ApptDescription,
  3. a.ApptStartDate + a.ApptStartTime AS ApptStart,
  4. a.ApptEndDate + a.ApptEndTime AS ApptEnd
  5. from DimDate AS d
  6. left join Appointments AS a
  7. on d.FullDate = a.ApptStartDate
  8. order by d.FullDate;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement