开发者

What is the naming convention for tables that keep track of the many-to-many relationships between other tables?

开发者 https://www.devze.com 2023-03-22 05:54 出处:网络
I\'m embarrassingly enough stuck开发者_Python百科 in one of my projects because I can\'t think of a name for this third table. My two first tables are called

I'm embarrassingly enough stuck开发者_Python百科 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?


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.


In my opinion pltest_pltest_foo would suffice.

0

精彩评论

暂无评论...
验证码 换一张
取 消