Topic: 1z0-071 topic 1 question 83

Examine the data in the ORDERS table:



Examine the data in the INVOICES table:



Examine this query:

A.
2
B.
1
C.
3
D.
5 01-MAR-2019
E.
3 01-JAN-2015
F.
4 01-FEB-2015

Re: 1z0-071 topic 1 question 83

drop table orders;
create table orders(order_id number , order_date date);

insert into orders values(1,null);
insert into orders values(2,null);
insert into orders values(3,'1-jan-2019');
insert into orders values(4,'1-feb-2019');
insert into orders values(5,'1-mar-2019');


create table invoices(
invoice_id number, order_id number, order_date date);

insert into invoices values(1,1,null);
insert into invoices values(2,2,'01-jan-2019');
insert into invoices values(3,3,null);
insert into invoices values(4,4,'01-feb-2019');
insert into invoices values(5,5,'01-APR-2019');


SELECT ORDER_ID , ORDER_DATE FROM ORDERS
INTERSECT
SELECT ORDER_ID , ORDER_DATE FROM INVOICES;


ANSWER IS B,F.

Re: 1z0-071 topic 1 question 83

Based on your own example, it return 2 rows. so B is not correct

Re: 1z0-071 topic 1 question 83

This needs an update badly. There is no question, just some tables and a query showing on this site..

Re: 1z0-071 topic 1 question 83

Best answer is B. 01-FEB-2019

Re: 1z0-071 topic 1 question 83

Just finished this exam. Question: Which three results will be returned?

Re: 1z0-071 topic 1 question 83

La respuesta es la B y la F

Re: 1z0-071 topic 1 question 83

B and F is answer- below is the result we will get. F option has typo 01-FEB-2019
orderid  order_date
1          (null)
4          01-02-19

Re: 1z0-071 topic 1 question 83

Question is not there

Re: 1z0-071 topic 1 question 83

In Oracle, the INTERSECT operator is used to combine the result sets of two or more SELECT statements and returns only the rows that are common to all result sets.

Re: 1z0-071 topic 1 question 83

BF ARE CORRECT

Re: 1z0-071 topic 1 question 83

BF is the answer

Re: 1z0-071 topic 1 question 83

I already took the exam ant these question ask for 3 answers
B, E, F

Re: 1z0-071 topic 1 question 83

can you write to me on telegram @Melsson

Re: 1z0-071 topic 1 question 83

Tesded:
1 null
4 01/02/19 00:00:00

Re: 1z0-071 topic 1 question 83

BF is the answer

Re: 1z0-071 topic 1 question 83

bf only if F is 01-FEB-2019 and not 01-FEB-2015 i am sorry then is B only

Re: 1z0-071 topic 1 question 83

is t 100% bf went we do created everything

Re: 1z0-071 topic 1 question 83

bf only if  F is  01-FEB-2019 and not 01-FEB-2015

Re: 1z0-071 topic 1 question 83

bf is correct for sure