Contents

?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

기본적인 쿼리

select distinct * from 테이블명;


distinct * 이란건 한 행의 전체 칼럼값이 중복되는 데이터를 제거하고 뽑아냄..


예를 들어 중복된걸 제거한 제목을 뽑아 낼려면..

select distinct 제목 from 테이블명;;


전체 칼럼을 뽑아 내는데 중복된게 제목이 중복된건 하나만 출력하고 싶다면 index값이 있어야 함.

select * from 테이블명 where index in (select max(index) from 테이블명 group by 제목)


그리고 정렬은..

select * from 테이블명 where index in (select max(index) from 테이블명 group by 제목) order by 제목


만약 index값이 없다면 unique한 값으로 조건을 줘도 됨..



?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
409 Develop [js]모바일 웹에서 orientationchange hooni 2013.04.23 20855
408 Develop [kotlin] 코틀린 안드로이드 앱 버전/빌드 정보 hooni 2020.12.15 2815
407 Develop [lego] 세그웨이 이것만 볼것.. ㅎㅎ file hooni 2013.04.23 36850
406 Etc [link] iOS(아이폰) 개발 관련 ㅋㅋ hooni 2013.04.23 22634
405 Etc [link] 유용한 사이트 링크. hooni 2013.08.19 130947
404 System/OS [linux] /etc/fstab 설정 방법.. ㅋㅋ hooni 2013.04.23 13137
403 System/OS [linux] apache, php, jsp 환경설정하기.. hooni 2003.04.23 16152
402 System/OS [linux] APM(apache, php, mysql) + gd 설치순서.. hooni 2003.04.23 20075
401 System/OS [linux] awk 명령어 hooni 2014.03.11 6002
400 System/OS [linux] CentOS 6.5 에서 "Bringing up interface eth0: Determining if ip address 121.78.127.197 is already in use for device eth0..." hooni 2014.04.05 7352
399 System/OS [linux] CentOS 6.x Cati 설치 (yum) hooni 2014.01.17 49647
398 System/OS [linux] CentOS Apache Httpd에 https 적용 hooni 2014.03.05 5335
Board Pagination Prev 1 ... 60 61 62 63 64 65 66 67 68 69 ... 99 Next
/ 99