Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- oracle
- 코딩
- From
- select
- JS
- HTML
- function
- 변수
- Operator
- 이클립스
- SQL
- 연산자
- Eclipse
- variable
- 에러
- Java
- 자바
- VisualStudioCode
- error
- Servlet
- 삐옥
- 오라클오류
- 오라클
- 서블릿
- sqldeveloper
- 오류
- CSS
- 자료형
- datatype
- 개발자
Archives
- Today
- Total
목록distinct (1)
뇨내
[Oracle - SQL Developer] column : 컬럼
column 컬럼 컬럼 리스트에서 가능 한 행동 distinct - 컬럼 리스트에서 사용 - distinct 컬럼명 > distinct 컬럼리스트 (실제 대상) - 중복값을 제거한다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 -- 14개 나라가 속한 대륙을 가져오시오. select continent from tblCountry; -- tblCountry에는 어떤 대륙들이 있습니까? select distinct continent from tblCountry; -- tblInsa. 어떤 부서가 있습니까? select distinct buseo from tblInsa; --tblInsa. 어떤 직위가 있습니까? select distinct jikwi from tblInsa; -- 중복값..
Oracle/Column + Order
2021. 11. 13. 21:05