为作业设计一个 web-cms 数据库

发布于 2024-09-26 16:46:20 字数 150 浏览 1 评论 0原文

我正在为网络 CMS 设计一个数据库系统。我在“内容”表中添加了“状态”列,它显示了某个时间每个内容的状态。我知道状态只能接受一些特殊值,例如:“草稿”、“评论等待”、授权待定以及...我想创建一个检查约束以使该列仅接受上述值。这是正确的工作吗? 我可以在约束中使用的全部状态值是什么?

I am designing a database system for a web CMS. I have added the "status" column in the "Content" table which shows the status of each content in a time. I know there are only some special values which status can accept like : 'draft', 'comment waiting', authorizing pending' and... I want to create a check constraint to make this column to accept only above values. is it a correct work?
what are the whole of the status values which i can use in my constraint?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

音盲 2024-10-03 16:46:20

使用 enum() 作为状态列的数据类型。例如:

CREATE TABLE example (
   ...
   status enum('draft','comment waiting','etc.') not null,
   ...
);

Use enum() for data type of the status column. e.g.:

CREATE TABLE example (
   ...
   status enum('draft','comment waiting','etc.') not null,
   ...
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文