강의

멘토링

커뮤니티

Inflearn Community Q&A

leegun's profile image
leegun

asked

Jaeseong Yoon's Oracle SQL Database 11g PL/SQL Developer

Lecture 25 Insert

25강 마지막 문제 DALLAS에 근무 하는 조건은 안넣으셨네요

Written on

·

348

0

인서트 문 마지막 조건에 a2.loc='DALLAS' 이것만 추가했는데 맞을까요?? 결과는 DALLAS에 근무중인 사원만 나오긴 했습니다.

insert into emp06(empno , ename , dname , loc)

select a1.empno , a1.ename , a2.dname , a2.loc

from emp a1 , dept a2

where a1.deptno=a2.deptno and a2.loc='DALLAS';

PL/SQLDBMS/RDBMSoraclesql

Answer 1

0

softcampus님의 프로필 이미지
softcampus
Instructor

넵 정확하게 하셨습니다.

leegun's profile image
leegun

asked

Ask a question