일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Python
- 백준
- Few Shot Dialogue State Tracking using Meta-learning
- MySQL
- DST zeroshot learning
- til
- How Much Knowledge Can You Pack Into the Parameters of a Language Model?
- dialogue state tracking
- 정보처리기사 책 추천
- 다이나믹 프로그래밍
- classification text
- 파이썬을 파이썬답게
- 정보처리기사전공자합격후기
- 프로그래머스
- nlp논문리뷰
- Zero-shot transfer learning with synthesized data for multi-domain dialogue state tracking
- Leveraging Slot Descriptions for Zero-Shot Cross-Domain Dialogue State Tracking
- few shot dst
- 검색엔진
- 딥러닝기초
- fasttext text classification 한글
- SUMBT:Slot-Utterance Matching for Universal and Scalable Belief Tracking
- 데이터 합성
- 정보처리기사전공자
- DST fewshot learning
- 모두의딥러닝
- 정보처리기사 수제비
- 2020정보처리기사필기
- 자연어처리 논문 리뷰
- From Machine Reading Comprehension to Dialogue State Tracking: Bridging the Gap
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 |