본문 바로가기

분류 전체보기

(197)
[programmers] MySQL - Lv.1 가장 비싼 상품 구하기 (sum, max, min) 문제 풀이 SELECT max(price) max_price from product;
[Java] 객체 간 협력 [실습] 학생 클래스 구현하기 package cooperation; public class Student { public String studentName; //학생 이름 public int grade; //학년 public int money; //학생이 가지고 있는 돈 public Student(String studentName, int money) { this.studentName = studentName; this.money = money; } public void takeBus(Bus bus) { bus.take(1000); this.money -= 1000; } public void takeSubway(Subway subway) { subway.take(1500); this.money -= 15..
[programmers] MySQL - Lv.1 나이 정보가 없는 회원 수 구하기 (is null) 문제 풀이 SELECT count(*) from user_info where age is null;
[programmers] MySQL - Lv.1 조건에 맞는 회원수 구하기 (select) 문제 풀이 SELECT count(user_id) users from user_info where year(joined) = 2021 and age >= 20 and age
[programmers] Java - Lv.0 나머지 구하기 문제 풀이 class Solution { public int solution(int num1, int num2) { return num1 % num2; } }
[Java] this 예약어 this의 역할 알아보자. 자신의 메모리를 가리키는 this this는 생성된 인스턴스 스스로를 가리키는 예약어이다. [실습] this 출력하기 package thisex; class BirthDay { int day; int month; int year; public void setYear(int year) { //태어난 연도를 지정하는 메서드 this.year = year; } public void printThis() { System.out.println(this); //this 출력 메서드 } } public class ThisExample { public static void main(String[] args) { BirthDay bDay = new BirthDay(); bDay.setYear(..
[programmers] Java - Lv.0 나이 출력 문제 풀이 class Solution { public int solution(int age) { return 2022 - age + 1; } }
[programmers] MySQL - Lv.2 3월에 태어난 여성 회원 목록 출력하기 (select) 문제 풀이 SELECT member_id, member_name, gender, date_format(date_of_birth, '%Y-%m-%d') from member_profile where tlno is not null and month(date_of_birth) = 3 and gender like 'W' order by member_id; 노트 DATE_FORMAT(column_name, format) DATETIME 필드에서 날짜만 선택할 경우 date_format 함수를 이용해서 날짜만 추출할 수 있다.