링크
- mysql 추천 도서
http://www.yes24.com/Product/Goods/77724190- oh my bash : 터미널
https://ohmybash.nntoan.com/bash -c "$(curl -fsSL https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh)"
- Postgres DB 도 많이 사용함
: 데이터베이스 오라클은 비싸기 때문에 포스트 그레스를 쓰고 개발자를 더 많이 채용해서 쓴다
: 마리아 데이터베이스도 많이 씀
https://dev.mysql.com/downloads/workbench/
https://velog.io/@may_yun/%EB%A7%A5-AWS-EC2-ssh-%EC%A0%91%EC%86%8D
$ docker run -p 3306:3306 -e MYSQL_ROOT_PASSWORD=password mysql
혹은
docker run --platform linux/amd64 --name mysql -d -p 3306:3306 -e MYSQL_ROOT_PASSWORD=232323 mysql:8.0.30
맥
윈도우
다시 접속해보기
Password변경 방법
docker ps
docker stop <container_id>
docker ps → mysql내려갔는지 확인
변경 후 mysql 다시 접속
https://animal-park.tistory.com/89
Executing:
ALTER TABLE `lion-sns`.`t_tweet`
ADD CONSTRAINT `comment_id`
FOREIGN KEY (`comment_id`)
REFERENCES `lion-sns`.`t_comment` (`comment_id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION;
Operation failed: There was an error while applying the SQL script to the database.
ERROR 1826: Duplicate foreign key constraint name 'comment_id'
SQL Statement:
ALTER TABLE `lion-sns`.`t_tweet`
ADD CONSTRAINT `comment_id`
FOREIGN KEY (`comment_id`)
REFERENCES `lion-sns`.`t_comment` (`comment_id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION
Duplicate foreign key constraint name 'comment_id'