일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- PySpark
- Tkinter
- Java
- c#
- Github
- 파이썬
- Redshift
- Google Excel
- GIT
- Python
- google apps script
- array
- math
- Excel
- SQL
- numpy
- string
- Mac
- hive
- matplotlib
- PANDAS
- Apache
- PostgreSQL
- dataframe
- list
- django
- gas
- Google Spreadsheet
- Kotlin
- Today
- Total
목록SQL (115)
달나라 노트
특정 문자열 내에서 원하는 sub text의 위치를 찾을 때에는 instr 함수를 사용할 수 있습니다. Syntax instr(text1, text2) text1에서 text2의 위치를 찾습니다. select instr('watermelon', 'me'); --> 1. 6 select instr('watermelon', 'elon'); --> 2. 7 1. watermelon에서 me라는 글자를 찾으면 water'me'lon 여기에 있죠. 가장 첫 번째 글자인 w의 위치가 1번이며 그 후로 1씩 늘어갑니다. 그러면 me의 위치가 시작되는 부분은 6이겠죠. 따라서 6이 return됩니다. 2. watermelon에서 elon이라는 글자를 찾으면 waterm'elon' 여기에 있죠. 가장 첫 번째 글자인 w..
Redshift에서 현재 날짜 또는 현재 시간을 추출할 수 있는 방법을 알아봅시다. select current_date; -- Result 2021-08-25 먼저 current_date입니다. current_date는 현재 날짜를 반환해줍니다. select to_char(current_date, 'yyyymmdd'); -- Result 20210825 current_date로 반환되는 날짜의 data type은 날짜이기때문에 to_char 함수와 같이 사용할 수 있습니다. select sysdate, --> 2021-08-25 19:38:52.382610 getdate() --> 2021-08-25 19:38:52.000000 ; sysdate와 getdate 함수는 현재 날짜와 시간을 반환해줍니다. ..
current_date를 사용하면 현재 날짜를 출력할 수 있습니다. select current_date, date_format(current_date, 'yyyyMMdd'), unix_timestamp(), from_unixtime(unix_timestamp()), date_format(from_unixtime(unix_timestamp()), 'yyyyMMdd') ; -- Result 2021-08-24 20210824 위처럼 current_date는 오늘 날짜를 반환해줍니다. date_format 함수와 같이 사용해서 날짜 형식도 바꿀 수 있습니다. select date_add(current_date, -1) ; -- Result 2021-08-23 date_add 함수와 동시에 사용할 수도 있습니다..
Redshift -> S3 -- Redshift -> S3 unload (' ----- (S3 server에 올릴 data를 추출하는 query) select item_id , item_name , price from test_table -- where valid in (''valid'') ----- (쿼리가 따옴표로 감싸져있기때문에 따옴표 2개로 string을 감싸야함.) ') to 's3://items/price_info/' ----- (unload 속에 적힌 query 결과가 저장될 s3 server의 경로) iam_role 'credential' ----- (s3 server에 로그인하기 위한 credential) manifest ----- (manifest format으로 저장) delimite..