Back to Editor

Solution: 3. Channels from India

Easy

Problem Detail:

Write a SQL query to find all channels where country is IN.

Answer SQL Query:

SELECT *
FROM channels
WHERE country = 'IN';
You can easily copy this solution, switch back to your editor tab, paste it, and run the SQL!