mysql 행 열 바꾸기
페이지 정보
본문
select type, group_concat(name separator '|') from test group by type ;
SELECT
case when note='cat1' then value end as 'cat1',
case when note='cat2' then value end as 'cat2',
case when note='cat3' then value end as 'cat3'
FROM sandbox;
SELECT
case when note='cat1' then value end as 'cat1',
case when note='cat2' then value end as 'cat2',
case when note='cat3' then value end as 'cat3'
FROM sandbox;
관련링크
-
https://fruitdev.tistory.com/16
6339회 연결 -
https://lightblog.tistory.com/154
5471회 연결
- 이전글git 사용법 20.02.21
- 다음글mysql 프로시저 한글깨짐 20.02.21
댓글목록
등록된 댓글이 없습니다.