6. Get all the unique channels that published review videos.
Note:
You can consider the videos which contain "review" in name as review videos.
Sort the output in the ascending order of channel_name.
Expected Output Format:
channel_name
SELECT vd.user_id
FROM quiz.video_content as vc,quiz.view_details as vd
where vd.user_id=336
order by user_name;
Comments
Leave a comment