티스토리 뷰
#order by 정렬된 테이블에 row 넘버 붙이기
select A.*, @num := @num+1 as row_num
from
(select col1, col2, col3 from table_B
where col2 = 'cosmos'
group by col1
order by col3 desc) as A
where (@num:=0)=0;
'My-sql' 카테고리의 다른 글
윈도우11 환경 My-SQL 서버 구축 (0) | 2022.04.30 |
---|---|
my-sql group by 로 묶은후 그룹별 순번 매기기 (0) | 2022.03.13 |
my-sql 쿼리결과를 다른 테이블에 insert (0) | 2022.03.13 |
my-sql 조인 업데이트 (0) | 2022.03.13 |
my-sql 쿼리 결과 테이블로 저장 (0) | 2022.03.13 |
댓글