inblog logo
|
silver
    SQL문제풀기

    [SQL문제풀기] 게임을 10개 이상 발매한 게임 배급사 찾기

    silver's avatar
    silver
    Mar 02, 2025
    [SQL문제풀기] 게임을 10개 이상 발매한 게임 배급사 찾기
    Contents
    문제SQLite

    문제

    solvesql.com
    solvesql.com
    https://solvesql.com/problems/publisher-with-many-games/

    SQLite

    내가 작성한 정답

    select c.name from companies c join games g on c.company_id = g.publisher_id group by g.publisher_id having count(g.game_id) >= 10
     
    Share article

    silver

    RSS·Powered by Inblog