Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.23 KB | None | 0 0
  1. CREATE OR REPLACE VIEW Enrollment AS
  2. (   SELECT
  3.             student,
  4.             course,
  5.             NULL AS WaitingSince
  6.         FROM
  7.             CourseEnrollment
  8.     )
  9.     UNION
  10.     (   SELECT
  11.             student,
  12.             course,
  13.             since AS WaitingSince
  14.         FROM
  15.             WaitingFor
  16.     )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement