Error Code: 1046. No database selected Select the default DB to be used by double-clicking its name in the SCHEMAS list in the sidebar.

Yushin·2024년 2월 18일
0

트러블슈팅

목록 보기
2/9

상황

mysql workbench 에서 테이블 생성 쿼리를 입력하였더니 오류가 발생하였다.

오류 메세지

16:52:54	
CREATE TABLE test (  id bigint(20) NOT NULL AUTO_INCREMENT,     content varchar(255) DEFAULT NULL,     PRIMARY KEY (id) ) ENGINE=InnoDB	Error Code: 1046. 
No database selected Select the default DB to be used by double-clicking its name in the SCHEMAS list in the sidebar.	
0.0068 sec

원인

오류 메세지를 읽어보면 데이터베이스가 선택되지 않았다고 한다.

해결

왼쪽 사이드바에서 테이블을 생성하고자 하는 스키마를 더블 클릭을 통해 선택하거나 우클릭 -> [Set as Default Schema] 을 통해 지정할 수 있다.

특정 스키마가 default DB로 지정되면 스키마 명이 굵은 글씨로 변한다.

결과

테이블이 생성되었다.

0개의 댓글