Considerando as tabelas e os resultados de consultas apresentados acima, julgue os itens que se seguem.
Se as colunas da tabela são do tipo integer, o seguinte comando cria ITENS_PRODUTOS.
create table ITENS_PRODUTOS (
ORDEM integer foreign key ORDENS,
PRODUTO integer foreign key PRODUTOS,
QUANTIDADE integer not null,
primary key (ORDEM));