일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 실습
- 민겸수
- 데이터베이스 배움터
- 언리얼 플러그인
- 의미와 무의미의 경계에서
- oracle
- command not found
- 백준
- 5639
- 백준 1253번
- FBX
- 트랜잭션 관리
- hackerank
- UnrealMP
- 비재귀셰그먼트
- C++
- OS
- Linux
- UActor
- 1759번
- Unreal
- SQL
- Security
- 오손데이터읽기
- objtofbx
- 1967번
- 언리얼 커스텀 플러그인
- 1253번
- 셰그먼트트리
- 2단계로킹
- Today
- Total
목록전체 글 (118)
fatalite
#1번 문제 select e.last_name, e.department_id, d.department_name from employees e, departments d where e.department_id = d.department_id; #2 select e.job_id, d.location_id from employees e, departments d where e.department_id = 80 AND e.department_id = d.department_id group by e.job_id, d.location_id; #3 select e.last_name, d.department_name, d.location_id, l.city from employees e, locations l, dep..
주 메모리를 제외한, 2차 저장장치에 대한 설명이다. HDD와 SSD가 포함된다. HDD HDD의 요소들 HDD의 입출력 시간 1) Seek Time 2) Rotation Latency 3) Transfer Time 이 3 가지 요소가 입출력 시간에 영향을 미친다. SSD의 요소들 Erase before write SSD는 Block과 Page로 구성되어있다. : read, write는 page단위로 가능하다. Block 단위로 사용하기 전에 erase 해야하는데, SSD가 over-write를 허용하지 않기 때문이다. 또한 블럭마다 쓸 수 있는 최대 횟수가 정해져 있다. 이를 넘어가면 사용할 수 없기 때문에, Wearing level을 통해 분산해야한다. Disk Attachment 디스크 부착은 Ho..
select * from employees; #1번 문제 select max(salary) as "Maximum", min(salary) as "Minimum", sum(salary) as "Sum", round(Avg(salary)) as "avg" from employees; #2번 문제 select JOB_ID, max(salary) as "Maximum", min(salary) as "Minimum", sum(salary) as "Sum", round(Avg(salary)) as "avg" from employees group by JOB_ID order by JOB_ID; #3번 문제 select JOB_ID, count(JOB_ID) as "count" from employees group b..