| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |
- how to DPI-1047
- SQL연습
- cx_oracle 에러
- HackerrankSQL
- 오라클 물음표
- neo4jcypher
- DPI-1047
- neo4j
- 오라클한글깨짐
- GSQL
- GSQL101
- oracle printed ????
- neo4jcertificate
- hackerrankTypeofTrianglesolution
- 그래프데이터베이스
- DPI-1072
- dpi-1072 version is unsupported windows
- Tigergraph GSQL
- hackerrankTypeofTriangle
- oracle ????
- cx_oracle python oracle error
- TigerGraph
- graphDB
- 오라클???출력
- hackerrank
- 타이거그래프
- 오라클LANG
- how to DPI-1072
- hackerranckSQL
- neo4j자격증
- Today
- Total
목록hackerrank (2)
song's note
https://www.hackerrank.com/challenges/weather-observation-station-6/problem?isFullScreen=true&h_r=next-challenge&h_v=zen&h_r=next-challenge&h_v=zen Weather Observation Station 6 | HackerRank Query a list of CITY names beginning with vowels (a, e, i, o, u). www.hackerrank.com 문제 STATION 테이블에서 도시명이 vowels (i.e., a, e, i, o, or u) 로 시작하는 도시를 출력하라. 중복X 풀이 도시명 첫글자는 모두 대문자였다. 그래서 lower 함수 → substr 함수로..
https://www.hackerrank.com/challenges/weather-observation-station-5/problem?isFullScreen=true&h_r=next-challenge&h_v=zen Weather Observation Station 5 | HackerRank Write a query to print the shortest and longest length city name along with the length of the city names. www.hackerrank.com 문제 STATION 테이블에서 CITY NAME이 가장 짧은 것과 긴 것 을 출력하기. + 길이가 같을 경우에는 알파벳 순서로 풀이 SELECT CITY, NUM FROM( SELECT CITY,..