개발/Sql
[Oracle] UNION 사용법 및 UNION ALL 차이점
안녕하세요 코드짜는헬창입니다. 오늘은 오라클에서 사용 할 수 있는 union에 대하여 포스팅하겠습니다. # union이란? 조회한 다수의 SELECT 문을 하나로 합치고싶을때 유니온(UNION) 을 사용 할 수 있습니다. #union 사용법 SELECT NAME, AGE, ADDRESS FROM A UNION SELECT NAME, AGE, ADDRESS FROM B 컬럼의 개수가 같아야하고, 각 컬럼의 데이터타입이 같아야합니다. #UNION, UNION ALL 차이점 UNION은 중복을 제거하여 값을 가져오고 UNION ALL은 중복을 제거하지 않습니다. 간단하죠 이상 마치도록 하겠습니다. 감사합니다.
[Mysql] 맥에서 Mysql 설치하기
필자는 .. 집에서 오라클 에러로 인한 Mysql 설치를 하였습니다. 내용은 아래와 같으니 참고 바랍니다. https://dev.mysql.com/downloads/mysql/ MySQL :: Download MySQL Community Server Select Operating System: Select Operating System… Microsoft Windows Ubuntu Linux Debian Linux SUSE Linux Enterprise Server Red Hat Enterprise Linux / Oracle Linux Fedora Linux - Generic Oracle Solaris macOS FreeBSD Source Code Select OS Version: All Wind dev..
[Oracle] Mac 에서 docker를 사용한 오라클 설치
1. docker 설치 https://www.docker.com/products/docker-desktop Docker Desktop for Mac and Windows | Docker Learn why Docker Desktop is the preferred choice for millions of developers building containerized applications. Download for Mac or Windows. www.docker.com 2. docker Login 설치 후, 상단 고래 모양의 아이콘을 클릭하여 로그인 진행 필자는 로그인 되어있지만 안되어있다면 회원가입해서 로그인 진행 하면됩니다. 3. 터미널 실행을 한 뒤 아래와 같이 순서에 맞춰 실행시키면 됩니다. (1) do..