数据库中不可编辑的字段

发布于 2024-10-26 07:29:34 字数 146 浏览 1 评论 0原文

抱歉这个蹩脚的问题,但我确实是一个数据库新手:

我想存储在数据库上创建某个字段时的日期。是否可以向该日期字段添加任何属性以使其无法修改?我只希望日期字段具有创建字段时的日期,不想编辑它。

我正在使用 PostgreSQL。

谢谢。

Sorry for this lame question, but I really am a database newbie:

I want to store the date when I create a certain field on the database. Is there any attribute I can add to that date field so that it cannot be modified? I just want the date field to have the date when a field is created on never want to edit it.

I am using PostgreSQL.

Thanks.

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

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

发布评论

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

评论(2

陌上芳菲 2024-11-02 07:29:34

实际上没有办法做到这一点;但是,如果您想发生这种情况,您可以在该特定 table.field 的更新上执行触发器并抛出 DBMS 错误。可能有一种更优雅的方式来做到这一点;但这就是我所能想到的,以保护写入后的特定值。

There is no way to actually do this; however, if you want to make this occur you would perform a trigger on update for that specific table.field and throw a DBMS error. There might be a more elegant way to do this; but this is all I can think of to protect a specific value once it has been written.

源来凯始玺欢你 2024-11-02 07:29:34

我认为 PostgreSQL 支持列级权限。检查这个:PostgreSQL 8.4 功能列表

I think PostgreSQL supports column level permissions. Check this : PostgreSQL 8.4 Feature List

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文