[SQL / postgreSQL] 데이터 유형 , 제약조건 (Constraints), CREATE , ALTER, DELETE, UPDATE, INSERT, DROP, CHECK 제약조건
SQL 데이터 유형 Boolean - True or False Character - char, varchar, and text Numeric -integer and floating-point number Temporal -date, time, timestamp ... UUID -Universally Unique Identifiers (특정 열의 고유 식별자를 만들기 위한 본질적인 알고리즘 고유 코드) JSON, Array ....etc.. --> 상황에 따라 어떤 데이터 유형을 저장할지 고민해야 한다..! 참고 : postgresql.org/docs/current/datatype.html 제약조건 (Constraints) - 표에 있는 데이터 열에 적용되는 규칙을 제약 조건이라고 한다. - 제약조건으로 ..
2022. 7. 11.