您如何命名同时具有类版本和实例版本的表?
例如,我有一个车辆类别(id、年份、品牌、型号)和车辆实例(id、vehicle_id、vin)。无法弄清楚如何命名它们来区分两者。建议?
For example, I have a vehicle class (id, year, make, model) and a vehicle instance (id, vehicle_id, vin). Can't figure out what to name them to differentiate the two. Suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我就这么称呼它吧,这是一个车型年份:
I would just call it what it is, which is a model year:
我将使用vehicle_model作为“类”表,并使用vehicle作为另一个表。
I would use vehicle_model for the "class" table, and vehicle for the other one.
类的
VehicleTypes
和实例的Vehicles
怎么样?What about
VehicleTypes
for the class andVehicles
for the instances?