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 |
Tags
- PER
- 리눅스
- ASP
- MS-SQL
- PyQt5
- 함수
- flutter
- 날짜
- pandas
- PyQt
- python
- MySQL
- 라즈베리파이
- port
- node.js
- tensorflow
- 다이어트
- ubuntu
- 유니티
- swift
- Linux
- mssql
- sqlite
- IOS
- Excel
- urllib
- javascript
- 맛집
- GIT
- Unity
Archives
목록2018/11/28 (1)
아미(아름다운미소)
[sqlite] [sqlite3] 날짜와 시간 함수
날짜와 시간 함수 [예제] --현재 날짜 SELECT date('now'); --2018-11-28 --금월 마지막 일 구하기 SELECT date('now','start of month','+1 month','-1 day'); --2018-11-30 --unixtime으로 한 시간 SELECT datetime(1323847995, 'unixepoch'); --2011-12-14 07:33:15 --local timezone으로 한 시간 SELECT datetime(1323847995, 'unixepoch', 'localtime'); --2011-12-14 16:33:15 --unixtime SELECT strftime('%s','now'); --1543368736 --unixtime 시간 차 (seco..
데이타베이스/SQLite
2018. 11. 28. 10:35