Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个 sql 查询来更改要添加到日期列中的表,这是我知道该怎么做的部分。我不知道该怎么做是指定列中的日期需要在某个日期之后。
我最近的尝试:
ALTER TABLE <table name> ADD constraint <constraint name> CHECK (<column name>(date, 'YYYY-MM-DD') >= '2000-01-01');
我正在使用 pgadmin4。
这个怎么样?
ALTER TABLE t ADD constraint chk_t_col CHECK (col >= '2000-01-01');