Changes between Version 4 and Version 5 of ImportantUseCase3


Ignore:
Timestamp:
01/21/22 22:20:16 (2 years ago)
Author:
191215
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ImportantUseCase3

    v4 v5  
    3535
    3636{{{
     37select u.full_name, u.email
     38        from artists a
     39        join managers m on a.manager_id = m.user_id
     40        join users u on u.id = m.user_id
     41        where
     42                a.user_id = (select u.id from users u
     43                        where u.email = 'test_artist@mail.com')
    3744}}}
    3845