code: 'ER_BAD_FIELD_ERROR', errno: 1054,
2021. 7. 9. 16:53
에러
mysql은 ""만 문자로 인식한다 table 형식을 varchar로 해줬기 때문에 문자로 써줘야 한다. 해결
에러) Cannot Add Foreign Key Constraint
2021. 7. 6. 14:06
에러
이것을 쓸때 Cannot Add Foreign Key Constraint 에러가 생기면? ALTER TABLE `alsum` ADD FOREIGN KEY (`city`) REFERENCES `area` (`city`); 참조하는 값을 primary key로 설정해주고 (참조 받는 것은 상관없다) 다른 primary key가 없도록 해준다. id가 primary 하고 있다면 id 컬럼 없애주기
에러) npm install 설치시 unable to resolve dependency tree
2021. 7. 4. 23:15
에러
에러 npm i 해서 모듈 추가할 때 해결방법 --save --legacy-peer-deps 예시 npm i react-native-splash-screen --save --legacy-peer-deps 참조 https://iancoding.tistory.com/154