7. Get all the videos that belong to "Action" genre (genre_id = 201) and have more than 1 lakh views.
Note:
• Sort the output in the ascending order of video_id.
Expected Output Format:
video_id
name
genre id
SELECT vc.id as Video_id ,v.genre_id
FROM quiz.video_content as vc
group by vc.name,vc.genre_id, vc.id
order by vc.name asc,vc.no_of_views desc
Comments
Leave a comment