RDS
![[Datagrip][RDS] Datagrip에서 DROP TABLE 안될 때(Connection refused)](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FcvFlCO%2Fbtq4ntLR1pB%2FzAlOtkPLlnKDgKObVhk42K%2Fimg.png)
[Datagrip][RDS] Datagrip에서 DROP TABLE 안될 때(Connection refused)
Datagrip에서 조회, 데이터 추가는 되는데 DROP TABLE은 수행되지 않을 때가 있다 Connection refused 해결방법 RDS endpoint를 이용하여 터미널에서 접속하여 DROP을 수행할 수 있다 mysql -u {username} -p -h {endpoint} use {DB_name}; //DB선택 SHOW TABLES; //table목록 확인 DROP TABLE {table_name}; //table 삭제 삭제 성공!