algorithm (114) 썸네일형 리스트형 [HackerRank] MySQL - Revising the Select Query Ⅰ 문제 Query all columns for all American cities in the CITY table with populations larger than 100000. The CountryCode for America is USA. The CITY table is described as follows: 풀이 select * from city where population > 100000 and countrycode = 'USA'; [programmers] MySQL - Lv.1 여러 기준으로 정렬하기 (select) 문제 풀이 select animal_id, name, datetime from animal_ins order by name, datetime desc; [programmers] MySQL - Lv.1 동물의 아이디와 이름 (select) 문제 풀이 select animal_id, name from animal_ins; 위의 답도 정답이나 문제에서 animal_id 순으로 조회하는 SQL문을 작성하라 했기 때문에 아래의 order by를 넣은 문장이 좀 더 정확한 표현이다. select animal_id, name from animal_ins order by animal_id; [programmers] MySQL - Lv.1 어린 동물 찾기 (select) 문제 풀이 SELECT animal_id, name from animal_ins where intake_condition != 'aged'; [programmers] MySQL - Lv.1 아픈 동물 찾기 (select) 문제 풀이 SELECT ANIMAL_ID, name from animal_ins where intake_condition = 'Sick'; [programmers] MySQL - Lv.1 이름이 있는 동물의 아이디 (IS NULL) 문제 풀이 SELECT animal_id from animal_ins where name is not null; [programmers] MySQL - Lv.1 이름이 없는 동물의 아이디 (IS NULL) 문제 풀이 SELECT animal_id from animal_ins where name is null; [programmers] MySQL - Lv.1 최댓값 구하기 (sum, max, min) 문제 풀이 select datetime from animal_ins order by datetime desc limit 1; select max(datetime) as "시간" from animal_ins; 첫 번째 코드는 max를 공부하지 않았을 때 작성한 코드이다. 이대로 입력해도 정답이라 뜨지만 출제 의도에 맞춘 답은 두 번째 코드이다. 이전 1 ··· 11 12 13 14 15 다음