SóProvas


ID
1454947
Banca
FGV
Órgão
TJ-SC
Ano
2015
Provas
Disciplina
Banco de Dados
Assuntos

Considerando duas tabelas relacionais R e S, tal que haja uma chave primária definida para cada uma delas e que a instância de R contenha um número maior de registros que a instância de S, analise os comandos SQL a seguir.

I.
select *
from r full outer join s on r.a = s.a


II.
select *
from r left outer join s on r.a = s.a
union select *
from r right outer join s on r.a = s.a


Sabendo-se que as instâncias de R e S não são vazias, é correto concluir que:

Alternativas
Comentários
  • The FULL OUTER JOIN keyword returns all rows from the left table (table1) and from the right table (table2).

    The FULL OUTER JOIN keyword combines the result of both LEFT and RIGHT joins.

     

    Fonte: http://www.w3schools.com/sql/sql_join_full.asp

     

    []'s