본문 바로가기
DataBase/MySQL with Error

[해결 방법] Error Code: 1146. Table 'TEST.user_info' doesn't exist

by HJ0216 2023. 6. 18.

🐬 기본 환경: IDE: MySQL Workbench, Language: MySQL

 

 

발생 Error

MySQL로 다음 Source Code를 실행할 경우,

1
2
insert into user_info(user_name) values ('test_user');
 
 
 

🚨 다음과 같은 오류 발생

Error Code: 1146. Table 'TEST.user_info' doesn't exist

 

 

발생 원인

TEST 데이터베이스에 user_info라는 table이 존재하지 않음

 

 

해결 방법

1. user_info table 생성

2. 입력된 table명에 오타가 있는지 확인