表名应当是蛇形命名法的复数名词

-- Good
select * from users
select * from visit_logs

-- Bad
select * from user
select * from visitLog