2010. 11. 3. 18:00
초보프로그래머만..
select id,group_concat(name separator ';')
from tbl_t
group by id
위처럼 id로 그룹화를 할때 해당id에 겹치는 name값을 한필드에 얻어오려면 group_concat을 쓰면된다.
예를들어....
id | name
----------------
1 a
1 b
1 c
2 d
2 e
3 f
요렇게 데이타가 있다면
id name
-----------
1 a;b;c
2 d;e
3 f
요렇게 나온다....
'초보프로그래머만..' 카테고리의 다른 글
오픈소스 라이센스 정책 찾아보는 사이트 (0) | 2011.10.27 |
---|---|
jeus6.0 설치시 웹관리자 안뜬다면?? (0) | 2011.04.22 |
이클립스 svn에러 ~is not a working copy directory (0) | 2010.10.18 |
Setting property 'source' to 'org.eclipse.jst.jee.server:플젝명' did not find a matching property. (1) | 2010.10.05 |
한글 <->유니코드 변환 (4) | 2010.09.07 |