mysql-php Statistics 7th Retention rate

Source: Internet
Author: User
Database about more than 50,000 login details data, how to check the table statistics 7th retention rate is relatively high?

Reply content:

Database about more than 50,000 login details data, how to check the table statistics 7th retention rate is relatively high?

The combination of registered array key values for datetime date format;
For example: 2016-08-11

$arr = [    '2016-08-11' => [2,3,5,6,111,333,23],//存储当天注册的用户id    '2016-08-12' => [],    ....]

Check the retention rate of users in 2016-08-11

 select count(*) from operation_log where client_id in() and login_time bewteen 1 and 2

Number of logins in 2016-08-17/2016-08-11 Login users = retention rate

More than 50,000 how to do it, direct PHP array processing will not consume too much memory.
You can also consider storing intermediate results with memcache or Redis.

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.