분류 전체보기 (197) 썸네일형 리스트형 [HackerRank] MySQL - Weather Observation Station 11 문제 Query the list of CITY names from STATION that either do not start with vowels or do not end with vowels. 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]" or city regexp "[^aeiou]$"; [programmers] MySQL - Lv.3 오랜 기간 보호한 동물 (2) (string, date) 문제 풀이 SELECT a.animal_id, a.name from animal_outs a join animal_ins b on a.animal_id = b.animal_id order by a.datetime - b.datetime desc limit 2; [HackerRank] MySQL - Weather Observation Station 10 문제 Query the list of CITY names from STATION that do not end with vowels. 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]$"; p.s 헤헤;P 열심히해야지! [programmers] MySQL - Lv.3 오랜 기간 보호한 동물 (1) (join) 문제 풀이 SELECT a.name, a.datetime from animal_ins as a left join animal_outs as b on a.animal_id = b.animal_id where b.animal_id is null order by a.datetime limit 3; [MySQL] 날짜 연산 SQL에서의 날짜 날짜나 시간 데이터는 수치 데이터와 같이 사칙 연산을 할 수 있다. 연산 후 결괏값으로 동일한 날짜 시간 유형의 데이터를 반환하거나 기간(간격)의 차를 나타내는 기간형(interval) 데이터를 반환하는 경우도 있다. 기간형은 '10일간', '2시간 10분'과 같이 시간의 간격을 표현할 수 있다. 시스템 날짜 시스템날짜란 컴퓨터에 내장되어 있는 시계로부터 실시간으로 얻을 수 있는 일시적인 데이터를 말한다. 표준 SQL에서는 'CURRENT_TIMESTAMP'라는 긴 이름의 함수로 실행했을 때를 기준으로 시간을 표시한다. 날짜 서식 날짜 데이터를 데이터베이스에 저장할 경우 CURRENT_TIMESTAMP를 사용해 시스템 상의 날짜를 저장할 수 있고, 직접 날짜를 지정해 임의의 날짜도 저장.. [Java] 클래스 클래스 속성을 구현하는 멤버 변수 public class Student { int studentID; String studentName; int grade; String address; } Student 클래스는 학생 객체가 가지는 속성(학번, 이름, 학년.. )을 변수로 선언했다. 이렇게 클래스 내부에 선언하여 객체 속성을 나타내는 변수가 멤버 변수(member variable)이다. 멤버 변수는 다른 말로 속성(property), 특성(attribute)등으로 표현하기도 한다. 멤버변수는 속성이 무엇이냐에 따라 알맞은 자료형을 선언해주어야 한다. 속성 자료형 변수 이름 설명 학번 int studentID 학번은 정수로 나타낼 수 있기 때문에 int형으로 선언한다 이름 String studentName.. [HackerRank] MySQL - Weather Observation Station 9 문제 Query the list of CITY names from STATION that do not start with vowels. 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]"; [programmers] MySQL - Lv.2 중성화 여부 파악하기 (string, date) 문제 풀이 SELECT animal_id, name, case when sex_upon_intake like 'Neutered%' or sex_upon_intake like 'Spayed%' then 'O' else 'X' end as 중성화 from animal_ins order by animal_id; 이전 1 ··· 14 15 16 17 18 19 20 ··· 25 다음