코딩테스트151 [해커랭크/SQL] 4. Select By ID 👉https://www.hackerrank.com/challenges/select-by-id/problem?isFullScreen=true Select By ID | HackerRank Query the details of the city with ID 1661. www.hackerrank.com 🤔 문제 분석 1) Query all columns for a city in CITY with the ID 1661. 💡 풀이 SELECT * FROM CITY WHERE ID = 1661 코딩테스트/해커랭크 SQL 2022. 12. 11. [해커랭크/SQL] 3. Select All 👉https://www.hackerrank.com/challenges/select-all-sql/problem?isFullScreen=true Select All | HackerRank Query all columns for every row in a table. www.hackerrank.com 🤔 문제 분석 1) Query all columns (attributes) for every row in the CITY table. 💡 풀이 SELECT * FROM CITY 코딩테스트/해커랭크 SQL 2022. 12. 11. [해커랭크/SQL] 2. Revising the Select Query II 👉https://www.hackerrank.com/challenges/revising-the-select-query-2/problem?isFullScreen=true Revising the Select Query II | HackerRank Query the city names for all American cities with populations larger than 120,000. www.hackerrank.com 🤔 문제 분석 1) Query the NAME field 2) for all American cities in the CITY table 3) with populations larger than 120000. 4) The CountryCode for America is USA. 💡 풀이 .. 코딩테스트/해커랭크 SQL 2022. 12. 11. [해커랭크/SQL] 1. Revising the Select Query I 👉https://www.hackerrank.com/challenges/revising-the-select-query/problem?isFullScreen=true Revising the Select Query I | HackerRank Query the data for all American cities with populations larger than 100,000. www.hackerrank.com 🤔 문제 분석 1) Query all columns 2) for all American cities in the CITY table 3) with populations larger than 100000. 4) The CountryCode for America is USA. 💡 풀이 SELECT * FRO.. 코딩테스트/해커랭크 SQL 2022. 12. 11. [리트코드/SQL] 10. Patients With a Condition (1527) 👉https://leetcode.com/problems/patients-with-a-condition/discussion/?envType=study-plan&id=sql-i Group Sold Products By The Date - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.... leetcode.com 🤔 문제 분석 1) Write an SQL query to report the patient_id, patient_name and conditions of the patients .. 코딩테스트/리트코드 SQL 2022. 12. 8. [리트코드/SQL] 9. Group Sold Products By The Date (1484) 👉https://leetcode.com/problems/group-sold-products-by-the-date/?envType=study-plan&id=sql-i Group Sold Products By The Date - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 🤔 문제 분석 1) Write an SQL query to find for each date the number of different products sold and their names. 2.. 코딩테스트/리트코드 SQL 2022. 12. 8. [리트코드/SQL] 8. Fix Names in a Table (1667) 👉https://leetcode.com/problems/fix-names-in-a-table/?envType=study-plan&id=sql-i Delete Duplicate Emails - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.... leetcode.com 🤔 문제 분석 1) Write an SQL query to fix the names so that only the first character is uppercase and the rest are lowercase. 2) .. 코딩테스트/리트코드 SQL 2022. 12. 8. [프로그래머스/SQL] 55. DATETIME에서 DATE로 형 변환 (String, Date - LV. 2) 👉https://school.programmers.co.kr/learn/courses/30/lessons/59414 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 🤔 문제 분석 1) ANIMAL_INS 테이블에 등록된 모든 레코드에 대해, 각 동물의 아이디와 이름, 들어온 날짜1를 조회하는 SQL문을 작성해주세요. 2) 이때 결과는 아이디 순으로 조회해야 합니다. 💡 풀이 SELECT ANIMAL_ID, NAME, DATE_FORMAT(DATETIME, "%Y-%m-%d") AS "날짜" FROM ANIMAL_INS ORDER BY ANIMAL_ID 코딩테스트/프로그래머스 SQL 2022. 12. 6. [프로그래머스/SQL] 54. 카테고리 별 상품 개수 구하기 (String, Date - LV. 2) 👉https://school.programmers.co.kr/learn/courses/30/lessons/131529 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 🤔 문제 분석 1) PRODUCT 테이블에서 상품 카테고리 코드(PRODUCT_CODE 앞 2자리) 별 상품 개수를 출력하는 SQL문을 작성해주세요. 2) 결과는 상품 카테고리 코드를 기준으로 오름차순 정렬해주세요. 💡 풀이 SELECT LEFT(PRODUCT_CODE, 2) AS CATEGORY, COUNT(*) AS PRODUCTS FROM PRODUCT GROUP BY CATEGORY O.. 코딩테스트/프로그래머스 SQL 2022. 12. 6. [프로그래머스/SQL] 53. 오랜 기간 보호한 동물(2) (String, Date - LV. 3) 👉https://school.programmers.co.kr/learn/courses/30/lessons/59411 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 🤔 문제 분석 1) 입양을 간 동물 중, 2) 보호 기간이 가장 길었던 동물 두 마리의 3) 아이디와 이름을 조회하는 SQL문을 작성해주세요. 4) 이때 결과는 보호 기간이 긴 순으로 조회해야 합니다. 💡 풀이 SELECT i.ANIMAL_ID, i.NAME FROM ANIMAL_INS AS i JOIN ANIMAL_OUTS AS o ON i.ANIMAL_ID = o.ANIMAL_ID ORDER.. 코딩테스트/프로그래머스 SQL 2022. 12. 6. [리트코드/SQL] 7. Delete Duplicate Emails (196) 👉https://leetcode.com/problems/delete-duplicate-emails/description/?envType=study-plan&id=sql-i Delete Duplicate Emails - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 🤔 문제 분석 1) Write an SQL query to delete all the duplicate emails, keeping only one unique email with the smalles.. 코딩테스트/리트코드 SQL 2022. 12. 5. [리트코드/SQL] 6. Swap Salary (627) 👉https://leetcode.com/problems/swap-salary/description/?envType=study-plan&id=sql-i Swap Salary - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 🤔 문제 분석 1) Write an SQL query to swap all 'f' and 'm' values (i.e., change all 'f' values to 'm' and vice versa) with a single update st.. 코딩테스트/리트코드 SQL 2022. 12. 5. 이전 1 ··· 5 6 7 8 9 10 11 ··· 13 다음