search

Home  >  Q&A  >  body text

laravel - How to retrieve N pieces of data with associated field values ​​A/B/C from a table using one SQL statement?

How to retrieve N pieces of data with associated field values ​​A/B/C from a table using one SQL statement?

phpcn_u1582phpcn_u15822799 days ago368

reply all(1)I'll reply

  • 世界只因有你

    世界只因有你2017-05-16 16:49:32

    Ask and answer your own questions

    SELECT * FROM s_area AS a
    WHERE area_parent_id in (3,4,5) and 5 > ( SELECT COUNT(*) FROM s_area WHERE area_parent_id = a.area_parent_id AND area_id>a.area_id) 
    order by area_sort asc

    reply
    0
  • Cancelreply