일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- From Machine Reading Comprehension to Dialogue State Tracking: Bridging the Gap
- Python
- 프로그래머스
- nlp논문리뷰
- 정보처리기사전공자
- DST zeroshot learning
- 다이나믹 프로그래밍
- Zero-shot transfer learning with synthesized data for multi-domain dialogue state tracking
- til
- 자연어처리 논문 리뷰
- 딥러닝기초
- 정보처리기사 수제비
- MySQL
- fasttext text classification 한글
- DST fewshot learning
- Few Shot Dialogue State Tracking using Meta-learning
- 정보처리기사 책 추천
- Leveraging Slot Descriptions for Zero-Shot Cross-Domain Dialogue State Tracking
- 모두의딥러닝
- dialogue state tracking
- 정보처리기사전공자합격후기
- 검색엔진
- 백준
- 2020정보처리기사필기
- 데이터 합성
- SUMBT:Slot-Utterance Matching for Universal and Scalable Belief Tracking
- 파이썬을 파이썬답게
- few shot dst
- How Much Knowledge Can You Pack Into the Parameters of a Language Model?
- classification text
Archives
- Today
- Total
🌲자라나는청년
My SQL 공부 3(UPDATE, DELETE) 본문
반응형
UPDATE
The UPDATE statement is used to modify the existing records in a table
Customer Id 가 1인 사람의 city와 CustomerName 변경하기
UPDATE Customers
SET City = 'Berlin', CustomerNaume ='Amy'
WHERE CustomerID = 1;
*WHERE 구문을 빠뜨리면, 전체 tuple이 변하게 된다.
DELETE
The DELETE statement is used to delete existing records in a table.
CustomerName 이 Amy인 사람의 tuple 삭제하기
DELETE FROM Customer WHERE CustomerName='Amy'
* WHERE 구문이 없으면 전체 tuple이 삭제된다.
*UPDATE는 FROM이 없고, DELETE만 있다.
반응형
'DataBase' 카테고리의 다른 글
MySQL 공부5(IN, BETWWEN) (0) | 2019.05.03 |
---|---|
MySQL 공부4(LIMIT, MIN, MAX, COUNT, AVG, SUM) (0) | 2019.05.03 |
My SQL 공부 2(ORDER, INSERT, NULL) (0) | 2019.05.02 |
My SQL 공부1(SLEECT, FROM, WHERE) (0) | 2019.05.02 |