블로그
- 2.mysql 설치 첫 번째로 MySQL 서버 패키지를 설치를 진행해줍니다! sudo apt install mysql-server 위에 명령어를 입력하고 엔터를 누르시고 Y를 눌러주시면 됩니다! Securing the MySQL server deployment. Connecting to MySQL using a blank password.
- [Spring] com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure 게다가 connection-test-query도 사용하고 있는데..? 머리를 골똘히 생각해보니 MySQL 서버를 안 켰다는 사실이 번뜩 떠오른다. 2. MySQL 서버 가동.......
- TPCC - mysql Lots of times we could see different benchmarks performed by tpcc-mysql. So today I want to tell you about how to use tpcc-mysql and how to build graphs with gnuplot in a few
- Mysql case문 mysql case문 2가지 방법 1번째 방법) SELECT 컬럼,컬럼, ( CASE 비교컬럼 WHEN 비교값 THEN '처리문' WHEN 비교값 THEN '처리문' ELSE '처리문 ' END ) AS TEST FROM 테이블 WHERE 조건 1번째 예시) SELECT gender, ( CASE gender WHEN 'f' THEN '여성' WHEN 'm' THEN
- mysqldump 방법.. > backup_test.sql : sql 파일로 저장해라란 의미 위와 같이 하면 mysql 전체 백업! mysqldump -u root -p test test_id > backup_test_id.sql test DB의 test_id 테이블을 백업한다.