Database System Concepts PART3 - Introduction to SQL
# SQL # 3.2.1 Basic Types vatiety of built-in types in SQL - char(n) : fixed-length(n) character string - varchar(n) : variable-length character string with user-specified maximum length n - int : machine-dependent - smallint : machine-dependent - numeric(p, d) : 총 p자리의 숫자, 그 중 소숫점 밑이 d자리. ex) numeric(3,1) => 44.5 - real, double : machine dependent - float(n): at least n digits 모든 타입은 null을 가질 수..
데이터베이스(DB) System Concepts
2022. 10. 23. 15:51