프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 문제 설명 다음은 어느 자동차 대여 회사에서 대여중인 자동차들의 정보를 담은 CAR_RENTAL_COMPANY_CAR 테이블입니다. CAR_RENTAL_COMPANY_CAR 테이블은 아래와 같은 구조로 되어 있으며, CAR_ID, CAR_TYPE, DAILY_FEE, OPTIONS는 각각 자동차 ID, 자동차 종류, 일일 대여 요금(원), 자동차 옵션 리스트를 나타냅니다. Column name Type Nullable CAR_ID INTEGER FALSE CAR_TYPE VARCHAR(255) FALSE DA..
MySQL
프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 문제 설명 다음은 어느 자동차 대여 회사의 자동차 대여 기록 정보를 담은 CAR_RENTAL_COMPANY_RENTAL_HISTORY 테이블입니다. CAR_RENTAL_COMPANY_RENTAL_HISTORY 테이블을 아래와 같은 구조로 되어 있으며, HISTORY_ID, CAR_ID, START_DATE, END_DATE 는 각각 자동차 대여 기록 ID, 자동차 ID, 대여 시작일, 대여 종료일을 나타냅니다. Column name Type Nullable HISTORY_ID INTEGER FALSE CAR_..
문제 링크 https://www.hackerrank.com/challenges/the-blunder/problem?isFullScreen=true The Blunder | HackerRank Query the amount of error in Sam's result, rounded up to the next integer. www.hackerrank.com 문제 Samantha was tasked with calculating the average monthly salaries for all employees in the EMPLOYEES table, but did not realize her keyboard's key was broken until after completing the calculati..
문제 링크 https://www.hackerrank.com/challenges/what-type-of-triangle/problem?isFullScreen=true Type of Triangle | HackerRank Query a triangle's type based on its side lengths. www.hackerrank.com 문제 Write a query identifying the type of each record in the TRIANGLES table using its three side lengths. Output one of the following statements for each record in the table: Equilateral: It's a triangle wi..
이전 글에서 MySQL 설치와 DB 접속까지 확인을 끝냈다. 이번에는 WSL에서 MySQL 데이터베이스를 만지는 대신 좀 더 보기 좋게 사용하기 위해 Workbench를 설치해보자. dev.mysql.com/downloads/workbench/ MySQL :: Download MySQL Workbench Select Operating System: Select Operating System… Microsoft Windows Ubuntu Linux Red Hat Enterprise Linux / Oracle Linux Fedora macOS Source Code Select OS Version: All Windows (x86, 64-bit) Recommended Download: Other Download..
MySQL 설치에 앞서 리눅스용 윈도우 하위 시스템(Windows Subsystem for Linux, WSL) 와 Ubuntu 20.04 LTS 다운로드를 모두 마친 상황. 이번엔 WSL 우분투에 MySQL 설치와 MySQL을 구동해보자. 2. MySQL 설치하기 Ubuntu(우분투)를 실행하면 아래와 같은 화면이 나오고 커서가 깜빡거린다. username(사용자명)을 입력해주고 나면 password(비밀번호)를 입력하라고 깜빡거리는데 여기서 비밀번호를 입력해도 화면으로는 비밀번호가 보이지 않는다. 'Retype new password:' 에도 방금 설정한 비밀번호를 다시 타이핑 해주면 된다. 비밀번호를 입력해주고 나면 'passwd: password updated successfully'라는 메세지와..