We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
select * from people where peopleId in (select peopleId from people group by peopleId having count(peopleId) > 1) ;
SELECT count(*) as count FROM push_record WHERE create_time BETWEEN "2018-03-28 00:00:00" and "2018-03-28 23:59:59";
SELECT COUNT(*) AS push_num, create_time FROM push_record GROUP BY DATE_FORMAT(create_time, '%Y%m%d')
The text was updated successfully, but these errors were encountered:
No branches or pull requests
查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断
查询某个字段的条数
按天查询
The text was updated successfully, but these errors were encountered: