数据库列命名

发布于 2024-08-13 05:33:26 字数 182 浏览 5 评论 0原文

假设有一个名为 AIRPORT 的表,我必须在两种命名约定之间进行选择:

  • 将属性命名为 AP_CODE、AP_NAME 等,
  • 或者将它们命名为 CODE、NAME

问题是它是否更高效 em> 遵循第一种方式还是使用同义词(即 AP)和引用属性(例如 AP.CODE)?

Let's suppose there is a table called AIRPORT and I have to choose between two naming conventions:

  • to name attributes like AP_CODE, AP_NAME and so on
  • or to name them just like CODE, NAME

The question is whether it is more efficient to follow the first way or to use synonym (i.e. AP) and reference attributes like AP.CODE?

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

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

发布评论

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

评论(3

余厌 2024-08-20 05:33:26

在任何常用的 RBDMS 中,它都不可能对性能产生任何重大影响。选择将基于可读性和个人风格偏好。我建议不要使用前缀,因为它通常只是人们训练自己排除的噪音。

It's not likely to have any significant performance impact either way in any RBDMS in common use. The choice would be based on readability and personal style preference. I would advise against the prefixing as it's usually just noise that people train themselves to tune out anyway.

那支青花 2024-08-20 05:33:26

其实没有什么区别,所以选择清晰度。我最近一直在使用 Oracle,它有 32 个字符的名称长度限制,因此我尝试避免在属性上使用表名前缀,而是使用表别名。 (这也使得更改表名称变得更容易。)

There's really no difference, so opt for clarity. I've recently been using Oracle, which has something like a 32 character name length limit, so I try to avoid the table name prefix on attributes and instead use the table aliases. (This also makes it a bit easier to change your table names.)

下壹個目標 2024-08-20 05:33:26

我只使用代码和名称。就我个人而言,我认为这很笨拙,而且没有任何好处。

如果您在其他表中有 CODE 和 NAME,则必须指定 AIRPORT.CODEOTHERTABLE.CODE 以消除歧义

如果您使用 WITH SCHEMABINDING (至少 SQL Server)你必须限定列名

因此,如果你使用列前缀,你最终会得到 AIRPORT.AP_CODE

作为一个类比,如果你考虑 OO 对象属性,你没有给它们加上前缀,是吗...?

准确地说,效率绝对没有提高。

I'd just use CODE and NAME. Personally, I think it's simply clumsy and adds no benefit at all.

If you have have CODE and NAME in other tables, then you'd have to specify AIRPORT.CODE and OTHERTABLE.CODE to remove ambiguity

If you use WITH SCHEMABINDING (SQL server at least) you have to qualify column names

So, you'd end up with AIRPORT.AP_CODE if you used column prefixes

As an analogy if you think about an OO object properties, you don't prefix them, do you...?

To answer exactly, there is absolutely no efficiency gain.

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