INIT2 MySql - AUTO_INCREMENT 초기화 방법과 유의사항 MySql8.x AUTO_INCREMENT 초기화 방법 ALTER TABLE table_name AUTO_INCREMENT =1; 위의 방법으로 AUTO_INCREMENT 값을 변경할 수 있으나, 데이터가 없는 경우에만 가능하다. Note that you cannot reset the counter to a value less than or equal to any that have already been used. For MyISAM, if the value is less than or equal to the maximum value currently in the AUTO_INCREMENT column, the value is reset to the current maximum plus one. For .. 2022. 9. 2. eslint 커맨드를 찾지 못하는 경우 ( esline --init 오류 ) npm install -g eslint 위 처럼 eslint를 정상적으로 설치하고 eslint --init 위 코드 실행 시 eslint 커맨드를 찾지 못하여 오류가 발생하는 경우, node_modules가 전역설치 되는 폴더에 환경변수 등록이 안되어 있어 실행이 안될 가능성이 높다. 보통이런 경우는 Windows 사용자명이 띄어쓰기가 있는경우 발생한다. 해결방법 1. npm 모듈이 설치된 위치 (ex: c:\npm )로 이동하여 eslint 실행파일이 정상적으로 위치해있는지 확인 2. 환경변수에 해당 path를 등록 3. 실행 중인 에디터 툴(ex: VSCode)를 재기동 하고 eslint --init 실행. 2021. 8. 14. 이전 1 다음