본문 바로가기
반응형

분류 전체보기148

[MySQL] Revising Aggregations - Averages ▶ SQL > Aggregation > Revising Aggregations - Averages Problem Query the average population of all cities in CITY where District is California. Input Format The CITY table is described as follows: My Answer SELECT AVG(POPULATION) FROM CITY WHERE DISTRICT = 'California' 2021. 4. 20.
[MySQL] Revising Aggregations - The Sum Function SQL > Basic Select > Revising Aggregations - The Sum Function Problem Query the total population of all cities in CITY where District is California. Input Format The CITY table is described as follows: My Answer SELECT SUM(POPULATION) FROM CITY WHERE DISTRICT = 'California' 2021. 4. 20.
[MySQL] Revising Aggregations - The Count Function ▶ SQL > Aggregation > Revising Aggregations - The Count Function Problem Query a count of the number of cities in CITY having a Population larger than 100,000. Input Format The CITY table is described as follows: My Answer SELECT COUNT(*) FROM CITY WHERE POPULATION > 100000 2021. 4. 20.
[Kotlin] 클래스와 객체 (2) 모든 내용은 Do it! 코틀린 프로그래밍을 바탕으로 정리한 것입니다. super과 this의 참조 상위 클래스는 super, 현재 클래스는 this로 참조 super로 상위 객체 참조 open class Bird(var name: String, var wing: Int, var beak: String, var color: String) { fun fly() = println("Fly wing: $wing") open fun sing(vol: Int) = println("Sing vol: $vol") } class Parrot : Bird { val language: String constructor(name: String, wing: Int, beak: String, color: String, lang.. 2021. 4. 19.
[Kotlin] 클래스와 객체 (1) 모든 내용은 Do it! 코틀린 프로그래밍을 바탕으로 정리한 것입니다. 객체 지향 프로그래밍(OOP: Object-Oriented Programming) : 프로그램의 구조를 객체 간 상호작용으로 표현한 프로그래밍 방식 ↔ 절차적 프로그래밍(Procedual Programming) : 코딩한 순서대로 프로그래밍 수행될 수 있도록 작성하는 프로그래밍 방식 * 연속적인 코드의 순소에 따라 작동하기 때문에 단순하고 오류를 예측하기 쉽지만 구조적이지 못해 프로그램 설계가 어려움 추상화 (Abstraction) : 특정 클래스를 만들 때 기본 형식을 규정하는 방법 인스턴스 (Instance) : 클래스로부터 생성한 객체 상속 (Inheritance) : 부모 클래스의 내용을 자식 클래스가 그대로 물려받음 다형성 .. 2021. 4. 16.
[MySQL] Employee Salaries ▶ SQL > Basic Select > Employee Salaries Problem Write a query that prints a list of employee names (i.e.: the name attribute) for employees in Employee having a salary greater than $2000 per month who have been employees for less than 10 months. Sort your result by ascending employee_id. →10개월 미만 직업으로 월급이 2000달러 이상인 직원. employee_id로 asc 정렬 Input Format The Employee table containing employee dat.. 2021. 4. 15.
반응형