Please help me explain. multi-table Joint Check. I don't understand it, thank you.

Source: Internet
Author: User
Please help me explain, multi-table join, I do not understand, thank you SQLcodeselect * from (selectbookid, count (bookid) asdegreefromtb_borrowgroupbybookid) asborrjoin (selectb. *, c. nameasbookcasename, p. pubname, t. typ, please help me explain. multi-table join queries are not easy to understand. thank you.
SQL code
  select * from (select bookid,count(bookid) as degree from tb_borrow group by bookid) as borr join (select b.*,c.name as bookcasename,p.pubname,t.typename from tb_bookinfo b left join tb_bookcase c on b.bookcase=c.id join tb_publishing p on b.ISBN=p.ISBN join tb_booktype t on b.typeid=t.id where b.del=0) as book on borr.bookid=book.id order by borr.degree desc limit 10 
Please help me explain. multi-table join queries are not easy to understand. thank you.

------ Solution --------------------
SQL code
select * from     (        select bookid,count(bookid) as degree from tb_borrow group by bookid    )as borr join       (         select b.*,c.name as bookcasename,p.pubname,t.typename from tb_bookinfo b left join tb_bookcase c on b.bookcase=c.id join tb_publishing p on b.ISBN=p.ISBN join tb_booktype t on b.typeid=t.id where b.del=0      ) as book on borr.bookid=book.id order by borr.degree desc limit 10

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.