///
Analise o comando SQL mostrado a seguir juntamente com a instância da tabela C.
insert into C
select distinct c1.a, c2.b
from C c1, C c2
where
not exists(select * from C x
where x.a = c1.a and x.b = c2.b)| a | b |
|---|---|
| 12 | 14 |
| 14 | 12 |
| 16 | 14 |
| 16 | 12 |
Assinale a opção que apresenta o número de linhas inseridas na tabela C pela execução desse comando.