반응형 PostgreSQL6 [PostgreSQL] 기본 데이터 타입 정리 PostgreSQL 기본 데이터 타입 정리 (주제를 클릭하면 해당 포스트로 이동합니다.) Character types / why should we use char instead of varchar? Numeric types Boolean types Temporal types UUID for storing Universally Unique Identifiers Array for storing array strings, numbers, etc... JSON stores JSON data hstore stores key-value pair User defined data 해당 페이지를 참고하였다. https://www.postgresqltutorial.com/ PostgreSQL Tutorial - Learn.. DB 2020. 9. 1. [PostgreSQL] 기본 데이터 타입 정리 - User defined data Character types / why should we use char instead of varchar? Numeric types Boolean types Temporal types UUID for storing Universally Unique Identifiers Array for storing array strings, numbers, etc... JSON stores JSON data hstore stores key-value pair User defined data User-defined Data Types create domain : 테이블을 만들때, 특정 타입에 대해 제약조건을 걸어주는것 (스키마 내부) 일반적으로 제약조건을 걸어줄 때의 쿼리 CREATE TABLE mailing_list.. DB 2020. 9. 1. [PostgreSQL] 기본 데이터 타입 정리 - hstore Character types / why should we use char instead of varchar? Numeric types Boolean types Temporal types UUID for storing Universally Unique Identifiers Array for storing array strings, numbers, etc... JSON stores JSON data hstore stores key-value pair User defined data hstore 키 ⇒ 값 쌍을 hstore에 저장. 쿼리 빈도가 낮은 속성이 많은 데이터나 행이 많은 경우 쓴다. 인덱싱이 빠르다는 장점이 있다. 키와 값은 오로지 스트링. 작업 이전에 hstore extension을 활성화시켜야한.. DB 2020. 9. 1. [PostgreSQL] 기본 데이터 타입 정리 - JSON Character types / why should we use char instead of varchar? Numeric types Boolean types Temporal types UUID for storing Universally Unique Identifiers Array for storing array strings, numbers, etc... JSON stores JSON data hstore stores key-value pair User defined data JSON JSON의 주 사용처는 서버와 웹 애플리케이션간 데이터 전송이다. 다른 형식과는 다르게 JSON은 사람이 읽을 수 있는 text 형식이다. 테이블 생성 CREATE TABLE orders ( id serial NOT NU.. DB 2020. 9. 1. [PostgreSQL] 기본 데이터 타입 정리 - Array Character types / why should we use char instead of varchar? Numeric types Boolean types Temporal types UUID for storing Universally Unique Identifiers Array for storing array strings, numbers, etc... JSON stores JSON data hstore stores key-value pair User defined data Array postgresql 에서는 column을 including built-in type, user-defined type, enumerated type 등 모든 유효한 데이터 유형의 배열로 정의할 수 있다. 테이블 생성 C.. DB 2020. 9. 1. [PostgreSQL] 기본 데이터 타입 정리 - UUID , Serial Character types / why should we use char instead of varchar? Numeric types Boolean types Temporal types UUID for storing Universally Unique Identifiers Array for storing array strings, numbers, etc... JSON stores JSON data hstore stores key-value pair User defined data UUID, Serial 암호화 알고리즘을 사용하여 만든 128비트짜리 문자열이다. serial 타입보다 훨씬 복잡하다. 40e6215d-b5c6-4896-987c-f30f3678f608 6ecd8c99-4036-403d-bf84-.. DB 2020. 9. 1. 이전 1 다음 💲 추천 글 반응형