PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WINDEV 25 → Aula 1066 - Windev - Sql 20/... - Limit
Aula 1066 - Windev - Sql 20/... - Limit
Iniciado por amarildo, fev., 15 2017 9:55 AM - Sem resposta
Membro registado
535 mensagems
Popularité : +14 (14 votes)
Publicado em fevereiro, 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