일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- cudnn
- web
- CES 2O21 참여
- Keras
- postorder
- 재귀함수
- CES 2O21 참가
- 자료구조
- web 사진
- KNeighborsClassifier
- vscode
- classification
- 대이터
- paragraph
- discrete_scatter
- 데이터전문기관
- 웹 용어
- C언어
- broscoding
- java역사
- inorder
- tensorflow
- bccard
- 결합전문기관
- web 개발
- web 용어
- mglearn
- pycharm
- 머신러닝
- html
- Today
- Total
목록[IT]/MySQL (44)
bro's coding
https://dev.mysql.com/downloads/workbench/ MySQL :: Download MySQL Workbench Select Operating System: Select Operating System… Microsoft Windows Ubuntu Linux Red Hat Enterprise Linux / Oracle Linux Fedora macOS Source Code Select OS Version: All Windows (x86, 64-bit) Recommended Download: Other Downloads: Windows (x86, 64-bit), M dev.mysql.com
https://dev.mysql.com/ MySQL :: Developer Zone MySQL Engineering Blogs MySQL Shell Dump & Load part 4: Dump Instance & Schemas MySQL Shell 8.0.21 comes with two utilities which can be used to perform logical dumps of all the schemas from an instance (util.dumpInstance()) or selected schemas (util.dumpS dev.mysql.com

Local instance MySQL click! Create a new schema in the connected server click! default
show databases; use 인사급여; show tables; select * from 사원; select count(*), count(퇴사일자) from 사원; ## 직급별 인원수 select 직급, count(*) as 인원수 from 사원 group by 직급; ## 직급별 인원 및 평균 월급 select 직급,count(*) as 인원수, avg(월급여) from 사원 group by 직급; ## 급여 구분에 따른 평균 월급 select 급여구분, count(*), avg(월급여) from 사원 group by 급여구분; ## 입사 년도별 평균 월급 select year(입사일자) as 입사년도, count(*) as 인원수, avg(월급여) as 평균월급 from 사원 group by y..