-
CHECK constraint (when create table)postgresql 2023. 7. 28. 17:38
create table example( id serial primary key, age smallint check (age > 21), parent_age smallint check(parent_age > age) )
'postgresql' 카테고리의 다른 글
VIEW (0) 2023.07.28 Timestamp and Extract (0) 2023.07.28 like / ilike / as (0) 2023.07.27 외부 데이터 import 하기 (0) 2023.07.27 PostgreSQL 소개 (0) 2023.07.27