분류 전체보기 (197) 썸네일형 리스트형 [Java] 객체지향 프로그래밍과 클래스 정의 객체지향 프로그래밍이란? 객체지향 프로그래밍(Object-Oriented Programming : OOP)은 객체를 기반으로 하는 프로그램으로, 객체를 만들고, 객체 사이에 일어나는 일을 구현하는 것이다. 객체지향 프로그래밍과 반대로 일어나는 일을 시간순으로 프로그래밍하는 것을 절차 지향 프로그래밍이라 한다. 절차 지향 프로그래밍 언어를 대표하는 언어는 C언어가 있다. 클래스란? 객체 지향 프로그램은 클래스를 기반으로 프로그래밍 한다. 클래스란, 객체의 속성과 기능을 코드로 구현한 것으로 객체를 클래스로 구현하는 것을 '클래스를 정의한다'라 한다. 학생이란 객체를 클래스로 살펴보면.. 클래스의 이름은 student로 지정(한글은 사용할 수 없음) student의 속성은 학번, 이름, 학년, 사는 곳 등이.. [MySQL] 문자열 연산 1. 문자열 결합 [문자열 결합 사례] 'ABC' || '1234' → 'ABC1234' => oracle, DB2, PostgreSQL에서 사용 'ABC' + '1234' → 'ABC1234' => SQL Server 에서 사용 concat('ABC', '1234') → 'ABC1234' => MySQL에서 사용 문자열 결합이란 위와 같이 문자열 데이터를 결합하는 연산이다. 2. SUBSTRING 함수 substring 함수는 문자열의 일부분을 계산해서 반환해주는 함수이다. 앞 4자리(연도) 추출 SUBSTRING('20140125001', 1, 4) → '2014' 5째 자리부터 2자리(월) 추출 SUBSTRING('20140125001', 5, 2) → '01' 3. TRIM 함수 trim함수는 문.. [HackerRank] MySQL - Weather Observation Station 8 문제 Query the list of CITY names from STATION which have vowels (i.e., a, e, i, o, and u) as both their first and last characters. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is the western longitude. 풀이 select distinct city from station where city regexp '^[aeiou]' and city regexp '[aeiou]$'; [programmers] MySQL - Lv.2 DATETIME에서 DATE로 형변환 문제 풀이 SELECT animal_id, name, date_format(datetime, '%Y-%m-%d') 날짜 from animal_ins order by animal_id; [Java] 반복문 반복문이란? 반복되는 일을 처리하기 위해 사용하는 것 [실습] 1부터 10까지 더하기 package loopexample; public class BasicLoop { public static void main(String[] args) { int num = 1; num += 2; num += 3; num += 4; num += 5; num += 6; num += 7; num += 8; num += 9; num += 10; System.out.println("1부터 10까지의 합은 " + num + "입니다."); } } while문 while(조건식) { 수행문1; } 수행문2; //조건식이 참인 동안 수행문1을 반복 실행, 거짓일 경우 수행문2 실행 어떠한 조건식을 만족하는 동안 중괄호{ } 안의 수.. [HackerRank] MySQL - Weather Observation Station 7 문제 Query the list of CITY names ending with vowels (a, e, i, o, u) from STATION. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is the western longitude. 풀이 select distinct city from station where city like '%a' or city like '%e' or city like '%i' or city like '%o' or city like '%u'; [programmers] MySQL - Lv.2 중복 제거하기 (sum, max, min) 문제 풀이 SELECT count(distinct name) count from animal_ins; [HackerRank] MySQL - Weather Observation Station 6 문제 Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is the western longitude. 풀이 select distinct city from station where city like 'a%' or city like 'e%' or city like 'i%' or city like 'o%' or city like 'u%'; 이전 1 ··· 15 16 17 18 19 20 21 ··· 25 다음