inblog logo
|
송승현의 블로그
    SQL문제풀기

    [SQL문제풀기]Python 개발자 찾기

    프로그래머스 SQL 고득점 Kit
    송송승현's avatar
    송송승현
    Dec 09, 2024
    [SQL문제풀기]Python 개발자 찾기
    Contents
    문제나의 해답

    문제

    school.programmers.co.kr
    https://school.programmers.co.kr/learn/courses/30/lessons/276013

    나의 해답

    select id, email, First_name, last_name from DEVELOPER_INFOS where 'python' in (SKILL_1,SKILL_2,SKILL_3) order by id asc
    • where 'python' in (SKILL_1,SKILL_2,SKILL_3) : 개발자가 보유한 스킬 중 하나가 python인 경우만
    • order by id asc : 개발자 ID를 기준으로 오름차순
    Share article
    Contents
    문제나의 해답

    송승현의 블로그

    RSS·Powered by Inblog