Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- PostgreSQL
- 자바스크립트
- DB
- Collections
- 몽고디비
- insert_into
- sqlite3
- DATABASE
- Join
- 데이터베이스
- MySQL
- 파이썬
- python
- 밴쿠버응급실
- subquery
- javascript
- insertOne
- MongoDB
- postgres
- sql
- 서브쿼리
- python데이터베이스연동
- cursor()
- statement
- SubqueryFilter
- PostgresDB
- onetoone
- DBFilter
- PreparedStatement
- query
Archives
- Today
- Total
목록DB (9)
새벽코딩

데이터 준비 -- 테이블 생성 CREATE TABLE transactions ( id INTEGER, -- 거래 고유 번호 amount DECIMAL(12, 2), -- 거래 금액(총 12자리 숫자, 소수점 이하 2자리까지) msg VARCHAR(15), -- 최대 15자리 글자 created_at TIMESTAMPTZ -- 거래 시각(+타임존) ); -- 레코드 등록 INSERT INTO transactions(id, amount, msg, created_at) VALUES (1, -24.20, 'Google', '2021-11-01 10:02:48'), (2, -36.30, 'Amazon', '2021-11-02 10:01:05'), (3, 557.13, 'Udemy', '2021-11-10 11:0..
Programming/Postgres DB
2022. 12. 15. 02:43