일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Python
- beandefinitionstoreexception
- 라이브템플릿
- counting elements
- 파이썬
- error
- 알고리즘
- 최단경로
- Spring
- 탐욕법
- Greedy
- HTTP
- 문자열
- API
- 프로그래머스
- java
- algorithm
- 소수
- 코딩테스트
- BFS
- brute force
- springboot
- 백준
- spring security
- 2981
- 2018 KAKAO BLIND RECRUITMENT
- Dijkstra
- codility
- applicationeventpublisher
- javascript
Archives
- Today
- Total
목록SQL #DDL (1)
Altiora Petamus

# DDL What is DDL? 데이터 정의 언어(Data Definition Language)의 약자 여러 객체의 생성, 변경, 삭제 관련 기능을 수행 CREATE, ALTER, DROP, TRUNCATE 문 등이 있다. 명령어를 수행하자마자 데이터베이스에 수행한 내용이 바로 반영되는 특성(auto commit)이 있다. ROLLBACK을 통한 실행 취소가 불가능하기 때문에 사용에 주의해야한다. 1. CREATE -- table_name 이라는 이름을 가진 table 생성 CREATE TABLE table_name ( column1 data-type, column2 data-type, . . . columnN data-type ); 2. DROP -- table_name object 전체를 삭제 DR..
카테고리 없음
2021. 1. 14. 12:58