为作业设计一个 web-cms 数据库
我正在为网络 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
enum()
作为状态列的数据类型。例如:Use
enum()
for data type of the status column. e.g.: