MYSQL each user obtains one record in three ways (group by xxx)

Source: Internet
Author: User

In MYSQL, each user reads one record in three ways (group by xxx) and asks me about the SQL statements in this regard. I remember it specially, after all, this is also quite common [SQL] select * from (select * from member_payment order by id desc) t group by member_id limit 10 first is to sort first, then group, in this way, you can obtain the most suitable data. Obvious disadvantages: Using temporary; Using filesort [SQL] select s. * from (SELECT max (id) as id FROM 'Member _ payment' group by 'Member _ id' limit 10) t left join 'Member _ payment' as s on t. id = s. id: The second type is the Union Query [SQL] select * from 'Member _ payment 'where EXISTS (select 'id' from (SELECT max ('id ') as id FROM 'Member _ payment' group by 'Member _ id' limit 10) t where t. 'id' = 'Member _ payment '. 'id') The third type is subquery stealing, which is the second type with the highest efficiency.
 

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.