728x90

mysql 3

MySQL

명령프롬프트에서 위와같이 하고 실행하고 (는 create database Investar; create user 'Investar'@'localhost' identified by 'Investar'; grant all privileges on Investar.* to 'Investar'@'localhost'; flush privileges; ) MySQL Connection 추가한 후, 위와같이 Manage Server Connections를 진행한다. [Store in Vault] 에는 비밀번호를 넣는다. 그럼 Investar가 실행된다. 참고로, 나는 root의 비밀번호는 manager, 나머지 비밀번호는 이름 그대로 사용했다.

파이썬 교육Day12(+mysql에서 데이터베이스 설치하기, select~ from~ where~ order by~ 실습문제, mysql 소스코드 링크 등)

오늘은 온라인 교육이었고, 수업내용은 다음과 같다. 1. mysql에서 employees db 설치하기 a. C:\(로컬디스트 C) 에다가 database를 넣는다. (ex. employees_db.zip 압축을 풀어 넣는다.) b. DB 및 계정 만들기 (Workbench에서 DBA로 접속한 후(아래 사진 참고)) c. 아래와 같이 친 후, ctrl+enter를 누른다. create database employees; create user 'employees'@'localhost' identified by 'employees'; #마지막'employees'는 비밀번호 grant all privileges on employees.* to 'employees'@'localhost'; flush privil..

파이썬 교육Day11(+ 데이터베이스 개념, MySQL 제거 후 설치, 파이썬 실습문제1 등)

오늘부터 강사님이 바꼈고, 첫날이라 정신없었다. 오프라인 수업이라 다행이었다. 오늘 수업내용은.. 1. Python 분야 2. 데이터베이스 개념 설명 3. MySQL 제거 후, 새로 설치(+workbench) 4. MySQL실습 5. git 설치 및 사용법 간략하게 링크: git-scm.com/downloads Git - Downloads Downloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party to..

728x90