PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV 25 → Aula 1066 - Windev - Sql 20/... - Limit
Aula 1066 - Windev - Sql 20/... - Limit
Started by amarildo, Feb., 15 2017 9:55 AM - No answer
Registered member
535 messages
Popularité : +14 (14 votes)
Posted on February, 15 2017 - 9:55 AM
// Mostra Dados como Limite de Informações
// Vou determinar qual maximo de informaçoes vou mostrar
// e colocar numa tabela

--Qry Notas Ler com Limite
SELECT
nota_fiscal.id_empresa_nota_fiscal AS NumeroNota,
nota_fiscal.data_emissao AS Emissao
FROM
nota_fiscal
WHERE
nota_fiscal.id_empresa=1
AND
nota_fiscal.nfe_situacao_xml=0
AND
nota_fiscal.id_empresa_tipo_nota=2
ORDER BY
nota_fiscal.id_empresa_nota_fiscal DESC
LIMIT {parametro_limite}

QRY_notas_ler.parametro_limite=EDT_limite
FileToMemoryTable(TABLE_notas,QRY_notas_ler)


http://doc.windev.com/en-US/…
http://doc.windev.com/en-US/…

http://windevdesenvolvimento.blogspot.com.br/2017/02/aula-1066-windev-sql-20-limit.html