Answer to Question #223638 in Databases | SQL | Oracle | MS Access for Siva

Question #223638


Get all the channel_ids that uploaded at least 20 videos in "AI/ML", "Cyber Security", "Data Science" or "Robotics" technologies between 2018 and 2021.


Example: If a channel publishes 5 videos in AI/ML, 10 videos in Cyber Security and 5 videos in Data Science, consider the channel.


Note:

Consider all the videos that have any of the technologies mentioned above in theirname

Sort the output in the ascending order of channel_id.

Expected Output Format

channel_id


Video Table


video_id name duration_in_secs published_datetime no_of_views channel_id

1000 Getting My Driver's License | Lele Pons 3652 2011-12-05 19:00 10619 367

1001 Apple iPhone X Review: The Best Yet! 4556 2021-01-19 20:12 140012 362




1
Expert's answer
2021-08-05T17:51:51-0400
SELECT channelid 
FROM video_content 
WHERE name IN ("AI/ML", "Cyber Security", "Data Science", "Robotics") 
ORDER BY channelid;

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS