SQL4 [DBeeaver] 편집기(editor) 글꼴/폰트 크기 변경하기 최근 패치(버전23.0.0.202303040621)로 편집기의 글꼴을 변경하는 설정이 바뀌었다. 최근 데스크탑 외에도 노트북도 함께 쓰면서 DBeaver를 새로 설치했는데 이전이랑 좀 달라져 있어서 남겨둔다. 공부 못할수록 필기구에 신경쓴다고 했던가...폰트부터 바꿔야 쿼리를 짤 수 있기에 중요하다! 1. DBeaver 상단메뉴에서 윈도우 > 설정을 누른다. 2. User Interface > 모양 > 색상 및 글꼴 3. 편집을 눌러 폰트와 글꼴을 설정한다. Main font는 DBeaver 내 대부분에 적용되는데 따로 설정할 수 있는 편집기 폰트, 쿼리 결과, 마법사 배너 등등을 제외한 거의 대부분의 영역을 바꿀 수 있다. Monospace font는 edit 섹션의 폰트와 크기를 변경할 수 있는데, .. 2023. 6. 26. HackerRank SQL - 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. Problem STATION의 테이블에서 모음으로 시작하면서 끝나는 CITY명만 출력하라. 단, 중복은 제외하라. Answer1 SELECT CITY FROM STATION WHERE CITY REGEXP '[aeiou]$' and CITY REGEXP '^[aeiou]\w*' GROUP BY CITY Answer2 SELECT CITY FROM STATION WHERE CITY REGEXP '^[aeiou].*.. 2022. 6. 18. HackerRank SQL - 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 Problem STATION의 테이블에서 모음으로 끝나는 CITY명만 출력하라. 단, 중복은 제외하라. Answer1 SELECT CITY FROM STATION WHERE CITY REGEXP '[aeiou]$' GROUP BY CITY How to solve 정규표현식으로 처리했으나, 여기서는 중복이 있나보다. GROUP BY로 묶어서 처리하면 깔끔하게 끝난다. SELECT CITY FROM STATION WHERE CITY REGEXP '[aeiou]$' GROUP BY.. 2022. 6. 17. HackerRank SQL - Weather Observation Station 5 Query the two cities in STATION with the shortest and longest CITY names, as well as their respective lengths (i.e.: number of characters in the name). If there is more than one smallest or largest city, choose the one that comes first when ordered alphabetically. The STATION table is described as follows: Problem STATION의 테이블에서 길이가 가장 짧은 CITY 명과 가장 긴 CITY 명을 출력 단, 동일한 길이의 CITY 명은 알파벳순으로 정렬하여 첫 .. 2022. 6. 14. 이전 1 다음