목록IT/MySQL (3)
helloRecodes

Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column. To disable safe mode, toggle the option in Preferences -> SQL Editor and reconnect. 해결 방법 1 Edit > Preferences... SQL Editor > Safe Updates 체크 해제 > OK > MySQL Workbench 재시작 해결 방법 2 원하는 쿼리 실행 전 다음 쿼리 실행(일시적 Safe Updates 해제) set sql_safe_updates=0;

1. 환경 변수 설정 [시스템 환경 변수 편집] 환경 변수 시스템 변수 > Path 선택 > 편집 > 새로 만들기 > MySQL 설치 경로(대부분 Program Files에 위치) C:\Program Files\MySQL\MySQL Server 8.0\bin > 확인 2. 적용 체크 명령 프롬프트 실행 mysql 입력 > ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO) =>환경 변수 등록 성공 (에러는 비밀번호 없어서 접속할 수 없음을 뜻함) mysql -u root -p 입력 > Enter password: MySQL 설치시 설정했던 Root Password 입력 => mysql 접속 성공 * MySQL..

1. MySQL 다운로드 https://www.mysql.com/ MySQL Over 2000 ISVs, OEMs, and VARs rely on MySQL as their products' embedded database to make their applications, hardware and appliances more competitive, bring them to market faster, and lower their cost of goods sold. Learn More » www.mysql.com 상단 "DOWNLOADS" 하단 "MySQL Community (GPL) Downloads" GPL : General Public License https://dev.mysql.com/download..