-1
You should have put what you’ve done.
As you’re new I’ll answer below but make a tour on how to use this site.
CREATE VIEW ProdutosPendentes AS
SELECT LstCompras.NmLstCompras, GrpProduto.NmGrpProduto, Produto.NmProduto
FROM Produto INNER JOIN GrpProduto ON (Produto.CdGrpProduto = GrpProduto.CdGrpProduto)
INNER JOIN Anota ON (Produto.CdProduto = Anota.CdProduto)
INNER JOIN LstCompras ON (Anota.CdLstCompras = LstCompras.CdLstCompras)
WHERE Anota.InCompra = ' '
ORDER BY LstCompras.NmLstCompras ASC, GrpProduto.NmGrpProduto ASC, Produto.NmProduto ASC;