[MySQL] No database selected Select the default DB to be used by double-clicking its name in the SCHEMAS list in the sidebar.

알린·2023년 8월 21일
0

TroubleShooting

목록 보기
22/25

MySQL Workbench에서 스키마 생성 후 테이블을 조회했을 때 다음 에러가 떴다.

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

이 에러는 스키마 입력하지 않았을 때 발생하는 에러로,

use member;
select* from member_table;

이렇게 두 줄의 코드를 한 번에 작성한 후 실행하니 에러가 뜬 것이다.

해결방법
select* from member_table; 이전에 use member; 입력 후 먼저 실행한 후
다시 select문 적어서 실행하면 해결

profile
Android 짱이 되고싶은 개발 기록 (+ ios도 조금씩,,👩🏻‍💻)

0개의 댓글