0
我有一些櫃檯數據庫表:收藏,點擊,評論等命名數據庫表字段(計數VS計數器)
,這是什麼領域最好的名字?我是否應該使用'FavoritesCounter'或'FavoritesCount'?
實例:
CREATE TABLE `tbl_example` (
`IdExample` int(8) NOT NULL AUTO_INCREMENT COMMENT '(PK)',
...
`FavoritesCounter` int(8) NOT NULL DEFAULT '0' COMMENT 'Number of times that example has been favorited.',
...
或
CREATE TABLE `tbl_example` (
`IdExample` int(8) NOT NULL AUTO_INCREMENT COMMENT '(PK)',
...
`FavoritesCount` int(8) NOT NULL DEFAULT '0' COMMENT 'Number of times that example has been favorited.',
...