일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Excel
- math
- django
- Tkinter
- c#
- PostgreSQL
- gas
- list
- PySpark
- Github
- Redshift
- Java
- string
- SQL
- numpy
- dataframe
- 파이썬
- Google Excel
- Python
- array
- Google Spreadsheet
- Apache
- matplotlib
- Kotlin
- Mac
- GIT
- google apps script
- PANDAS
- hive
- Today
- Total
목록PostgreSQL (21)
달나라 노트
alter table ~ alter column/modify column ~ type ~ 구문을 사용하면 column의 data type을 변경할 수 있습니다. Syntax alter table (table_name) alter column (column_name) type (data_type) alter table (table_name) modify column (column_name) type (data_type) alter table (table_name) modify (column_name) type (data_type) alter table로 column의 data type을 바꾸기 위한 syntax로는 대표적으로 위 3가지가 있습니다. 위 3가지 형식은 사용하는 DB의 종류와 version에 ..
alter table ~ rename to ~ 구문을 사용하면 table의 이름을 바꿀 수 있습니다. Syntax alter table (original_table_name) rename to (new_table_name) (original_table_name) = 기존 테이블 이름입니다. schema와 table 이름 모두를 적어야합니다. (new_table_name) = 새로운 테이블 이름입니다. schema 이름은 생략하고 table 이름만 적어야 합니다. alter table test_schema.first_table rename to second_table ; 현재 test_schema.first_table이라는 테이블이 있다고 가정해봅시다. 그리고 이 table의 이름을 test_schema...
SQL을 다루다보면 어떤 table의 정보가 필요한 경우가 있습니다. 여기서 말하는 정보란 table에 존재하는 column의 종류, column의 자료형(data type), column에 들어갈 수 있는 데이터의 최대 크기 등을 의미합니다. 이러한 정보들을 DDL(Data Definition Language, Data Description Language)이라고 합니다. SQL에서 DDL이란 보통 table의 이름, table에 존재하는 column 종류, 각 column의 data type, column들이 수용할 수 있는 데이터의 최대 크기, distinct key, sort key 등 table의 특징에 관한 정보를 담은 내용을 의미합니다. (더 자세하고 정확히 말하면 위 설명보다 더 상세한 정..
psycopg2를 새로운 컴퓨터에서 설치하거나 또는 version이 업그레이드되거나 한다면 아래와 같은 Error가 발생할 때가 있습니다. Error: pg_config executable not found 여러 가지 상황이 있겠지만 위 에러는 주로 psycopg2 가 설치되기 전 또는 psycopg2가 업그레이드되면서 psycopg2에 필요한 다른 모듈들을 찾지 못하기 때문일 가능성이 큽니다. Python interpreter 사용 pip install postgresql Conda interpreter 사용 conda install postgresql 어떤 interpreter를 사용하고 있는지에 따라 위 2개의 명령어 중 하나를 terminal에 입력하여 postgresql 라이브러리를 설치해줍시다..