跟踪其他表之间的多对多关系的表的命名约定是什么?
我很尴尬地陷入了我的一个项目中,因为我想不出第三张表的名称。我的前两个表被称为
pltest
和
pltest_foo
每个 pltest(Ping 丢失测试)可以有许多 pltest_foo,反之亦然。我该如何称呼跟踪连接的第三个表呢?
I'm embarrassingly enough stuck in one of my projects because I can't think of a name for this third table. My two first tables are called
pltest
and
pltest_foo
Each pltest (Ping Loss Test) can have many pltest_foos and vice versa. What to I call the third table that keeps track of the connections?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通常只是用下划线连接两个表名,尽管在这种情况下这可能看起来很奇怪:
pltest_pltest_foo
。通常,没有必要比这更奇特。I usually just join the two table names with an underscore, although that would probably look odd in this case:
pltest_pltest_foo
. There's no real need to get any fancier than that, usually.在我看来,
pltest_pltest_foo
就足够了。In my opinion
pltest_pltest_foo
would suffice.