반응형
SELECT*
FROM (
SELECT TB_MUSIC_VIDEO.*, @counter := @counter +1 AS counter
FROM (select @counter:=0) AS initVar, TB_MUSIC_VIDEO
ORDER BY rating_count DESC
) AS X
where counter <= (10/100 * @counter);
ORDER BY rating_count
DESC
ref. http://stackoverflow.com/questions/5615172/mysql-limit-by-a-percentage-of-the-amount-of-records
반응형
'아카이브 > MySQL' 카테고리의 다른 글
muliple insert query (0) | 2016.06.10 |
---|---|
자주 참고하는(깜박하는) 쿼리문들 (0) | 2015.02.13 |
[Trigger] 외부 프로그램을 호출하기 위해 시도한 트리거기능 (0) | 2015.02.01 |
[Mysql] 데이터베이스 한글 설정 (0) | 2015.01.22 |
[mysql] 백업/복구 (0) | 2015.01.22 |