Heim >Datenbank >MySQL-Tutorial >[转] mysql分组取每组前几条记要(排名)

[转] mysql分组取每组前几条记要(排名)

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-07 16:27:211061Durchsuche

[转] mysql分组取每组前几条记录(排名) ? ? ? ?参照这篇文章http://www.cnblogs.com/JulyZhang/archive/2011/02/12/1952213.html,拿出每个分类中的前几记录,写成的mysql如下: select a.id,name,type from adpos a where 3 (select count(*) from tablename

[转] mysql分组取每组前几条记录(排名)

? ? ? ?参照这篇文章http://www.cnblogs.com/JulyZhang/archive/2011/02/12/1952213.html,拿出每个分类中的前几记录,写成的mysql如下:

select a.id,name,type from adpos a where 3 > (select count(*) from tablename where type = a.type and id

? ? ? ?mysql居然不会支持top ,比如select top 3 id from table order by type,id,就不行。

? ?

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn