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.
精彩评论