You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select qr_code.qrd_id,
qr_code.folder,
qr_code.title,
coalesce(NULLIF(city, ''), NULLIF(village, '')) as city_or_village,
user_request.*,
access_control.email
from user_request
join qr_code on user_request.qr_code_id = qr_code.id
left outer join access_control on access_control.folder=qr_code.folder;
The text was updated successfully, but these errors were encountered:
hithacker
changed the title
Explaining data structures to their Business Intelligence team
Explaining data structures to the Business Intelligence team
Dec 21, 2021
Query
select qr_code.qrd_id,
qr_code.folder,
qr_code.title,
coalesce(NULLIF(city, ''), NULLIF(village, '')) as city_or_village,
user_request.*,
access_control.email
from user_request
join qr_code on user_request.qr_code_id = qr_code.id
left outer join access_control on access_control.folder=qr_code.folder;
The text was updated successfully, but these errors were encountered: