Dev Hyeri

전체 480

[SQL KIT] (2024) 자동차 대여 기록에서 대여중 / 대여 가능 여부 구분하기(설명/코드/정답)

문제 링크 :https://school.programmers.co.kr/learn/courses/30/lessons/157340 POINT. CASE/WHEN/THEN 사용 가능 '2022-10-16' BETWEEN START_DATE AND END_DATE 작성 가능 코드. SELECT CAR_ID, MAX(CASE WHEN '2022-10-16' BETWEEN START_DATE AND END_DATE THEN '대여중' ELSE '대여 가능' END) AS AVAILABILITY FROM CAR_RENTAL_COMPANY_RENTAL_HISTORY GROUP BY CAR_ID ORDER BY CAR_ID DESC; 내부 동작 순서 1. FROM 절 FROM 절 : CAR_RENTAL_COMPANY_..

[영국영어] 전반적으로 긍정적이다 people are basically fond (+ 예문)

people are basically fond 전반적으로 긍정적이다 Why do you think so many contribute to open-source projects? 왜 그렇게 많은 사람들이 오픈 소스 프로젝트에 기여하나요? Well, people are basically fond of sharing their knowledge and skills with the community. 음, 기본적으로 사람들은 지식과 기술을 커뮤니티와 공유하는 것을 좋아해. I noticed you always give your colleagues a hand. 너는 항상 동료들에게 도움을 주는 걸 봤어. Yeah, people are basically fond of helping each other out in..

[영국영어] 요지는 알겠지 you get the general gist(+ 예문)

you get the general gist 요지는 알겠지 I've made some updates to the user interface. 사용자 인터페이스 몇 가지를 업데이트했어. I haven't looked at the specifics, but from the users'feedback, I think I get the general gist. 세부 사항을 살펴보진 않았지만, 사용자 피드백으로 봤을 때, 전반적인 요지는 알 것 같아. We're implementing a new authentication system. 새로운 인증 시스템을 구현하고 있어. I haven't looked at the code yet, but I'm confident I can get the general gist ..

[영국영어] 요점은 비슷하다 bit of a theme(+ 예문)

bit of a theme /θiːm/ 요점은 비슷하다 Your instagram feed has a bit of a theme going on lately. 요즘 네 인스타그램 피드에는 어떤 주제가 있는 것 같아. Yeah, I decided to focus on nature and outdoor adventures for a more cohesive look. 맞아, 더 일관된 비주얼을 위해 자연과 야외 활동에 초점을 맞추기로 했어. Noticed your home decor has a bit of a theme. 너희 집 장식에는 어떤 주제가 있는 것 같아. Yeah, I prefer a minimalist style, having a bit of a theme makes it aesthetical..

[영국영어] 많은 oodles (+ 예문)

oodles /ˈuːdlz/ 많은 - Oodles of love and heaps of good wishes from Cam. 사랑과 행운을 가득 담아. 캠 I saw you got a package today. What's inside? 오늘 소포 온 거 봤어. 뭐가 온 거야? Oodles of snacks! My mom sent me a care package for exams. 간식 왕창! 시험 기간에 엄마가 보내준 응원 선물이야. How's the new gaming console you bought? 새로 산 게임 콘솔 어때? Amazing! Oodles of games to play, and the graphics are mind-blowing. 정말 대박이야! 할 게임이 엄청 많아, 그리고 ..

[영국영어] 결혼식에 참석하지 못한 사람들의 카드 telegram(+ 예문)

telegram 참석 못한 사람들이 쓴 카드 전보 I couldn't make it to the wedding, but I sent my wishes through a wedding telegram. 결혼식에 참석하지 못했지만, 결혼식 텔레그램으로 축하 인사를 보냈어. That was such a thoughtful gesture. They loved your message. 정말 생각 있는 행동이야. 걔들이 너의 메시지를 정말 좋아했거든. The wedding telegram included a sweet message from the couple about their love story and journey to marriage. 결혼식 텔레그램에는 커플이 자신들의 사랑 이야기와 결혼까지의 여정에 대..

[영국영어] 가장 먼저 해야 할 일 first things first(+ 예문)

first things first 가장 먼저 해야 할 일 I want to contribute more to the open-source community. Where should I start? 오픈 소스 커뮤니티에 더 기여하고 싶어요. 어디서 시작해야 할까요? First things first, find projects aligned with your skills and interests, and start by fixing small issues. 가장 먼저 기술과 관심사에 잘 맞는 프로젝트를 찾고, 작은 문제부터 해결하는 것으로 시작하세요. I'm overwhelmed with feature requests. How should we handle them? 기능 요청이 너무 많아 어떻게 처리해야 ..

[영국영어] 무슨 일 생기겠어? What's the worst that could happen? (+ 예문)

What's the worst that could happen? 무슨 일이야 생기겠어? 밑져야 본전이잖아? I'm thinking of quitting my job and starting my own business. What's the worst that could happen? 직장을 그만두고 내 사업을 시작할지 생각 중이야. 밑져야 본전이잖아 Your business might face challenges, but if you believe in your idea, it's worth taking the risk. 사업이 어려움에 부딪힐 수 있지만, 아이디어를 믿는다면 그 위험을 감수할 가치가 있어. I'm planning to confess my feelings to them. What's the..

[SQL KIT] (2024) 즐겨찾기가 가장 많은 식당 정보 출력하기(설명/코드/정답)

문제 링크 : https://school.programmers.co.kr/learn/courses/30/lessons/131123 코드1. 서브쿼리 + 조인 사용 SELECT R1.FOOD_TYPE, R1.REST_ID, R1.REST_NAME, R1.FAVORITES FROM REST_INFO R1 JOIN ( SELECT FOOD_TYPE, MAX(FAVORITES) AS FAVORITES FROM REST_INFO GROUP BY FOOD_TYPE ) R2 ON R1.FOOD_TYPE = R2.FOOD_TYPE AND R1.FAVORITES = R2.FAVORITES ORDER BY R1.FOOD_TYPE DESC; 코드2. 윈도우 함수 사용 SELECT FOOD_TYPE, REST_ID, REST..

[SQL KIT] (2024) 오프라인/온라인 판매 데이터 통합하기(설명/코드/정답)

문제 링크 : https://school.programmers.co.kr/learn/courses/30/lessons/131537 POINT. 날짜 함수 UNION 코드. SELECT DATE_FORMAT(SALES_DATE, '%Y-%m-%d') AS SALES_DATE, PRODUCT_ID, USER_ID, SALES_AMOUNT FROM ONLINE_SALE WHERE SALES_DATE LIKE ('2022-03%') UNION SELECT DATE_FORMAT(SALES_DATE, '%Y-%m-%d') AS SALES_DATE, PRODUCT_ID, NULL AS USER_ID, SALES_AMOUNT FROM OFFLINE_SALE WHERE SALES_DATE LIKE ('2022-03%')..