SQL
[HackerRank] Revising the Select Query II
select name from city where population > 120000 and countrycode ='usa';
[HackerRank] Revising the Select Query I
select id, name, countrycode, district, population from city where population > 100000 and countrycode='usa'; 프로그래머스 sql 고득점 kit 거의 다 풀어서 여기 있는 문제들 앞으로 풀어볼 예정! + 생각보다 자잘한 문제가 많아서 푼 다음 한번에 정리해야겠습니다 https://www.hackerrank.com/domains/sql Solve SQL Code Challenges A special-purpose language designed for managing data held in a relational database. www.hackerrank.com
postgresql 비밀번호 재설정 하는방법
C:\Program Files\PostgreSQL\12\data 경로 들어가서 pg_hba.conf 메모장으로 열고, md5찾아서 trust로 변경 경로찾는법 show data_directory; pg_hba.conf 파일 변경 후 sql shell로 들어가면 비번 없이 들어가짐 비밀번호 변경 alter user postgres with password '사용할 패스워드'; 수정하고 나와서 다시 trust로 바꾼거 md5로 바꾸고 로그인 되는지 확인할것