gpt4 book ai didi

sql - 指定 1 到 5 之间的数字列

转载 作者:行者123 更新时间:2023-11-29 11:41:24 27 4
gpt4 key购买 nike

我正在尝试在 postgresql 表中设置一个数字列。此列只能包含 1 到 5 之间的数字。

我应该如何在我的 postgresql 中指定它?

最佳答案

你想要一个 constraint

CREATE TABLE mytable (
constraint_col integer CHECK (constraint_col > 0 and constraint_col < 6)
);

关于sql - 指定 1 到 5 之间的数字列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40971985/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com