Drop

    [Datagrip][RDS] Datagrip에서 DROP TABLE 안될 때(Connection refused)

    [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 삭제 삭제 성공!