오라클 DUAL을 사용하여 멀티 row, column table 만들기
쿼리
select
decode(rownum, 1, 'A', 2, 'B', 3, 'C') as col1,
decode(rownum, 1, 'D', 2, 'E', 3, 'F') as col2
from
dual
connect by level <= 3;
결과
[출처] stackOverFlow https://stackoverflow.com/questions/28202851/oracle-select-from-dual-with-multiple-rows-and-columns?rq=1
'Database' 카테고리의 다른 글
CentOS7에서 Oracle 11g 설치 시 unable to open display 해결 (0) | 2022.03.04 |
---|---|
ORA-03001: 현재에는 구현되어 있지 않은 기능입니다 (0) | 2020.09.22 |
오라클 정렬 조건 주기 (0) | 2018.04.30 |
[DBMS] SQLGate 바인딩 변수 사용 (0) | 2018.01.25 |
Resin + Sqlite3 + JSP 환경 구축 시 ClassNotFoundException 에러 (0) | 2017.11.07 |