GAFA
|
SÃO PAULO SP - BRASIL
|
|
ENUNCIADA !
|
|
|
Postada em 30/08/2004 15:26 hs
Pessoal tenho uma tab de ocorrencia( a qual tem como campo de pesquisa o cpf), ou melhor, na qual utilizo o campo cpf como parametro para consulta gostaria de fz um select pegando apenas a ocorrencia masi antiga referente a um cpf cadastrado
Select * from tab where cpf " txtcpf " and data= a mais antiga da tab// como posso fz essa consulta
|
|
|
|
|
Postada em 30/08/2004 15:36 hs
vc pode fazer assim: "select top 1 from tab where cpf = " & txtcpf & " order by data"
|
|
|
|
Postada em 30/08/2004 15:42 hs
"select top 1 from tab where cpf = " & txtcpf & " order by data " mas se for em MySQL é assim "select from tab where cpf = " & txtcpf & " order by data limit 1"
|
|
|
GAFA
|
SÃO PAULO SP - BRASIL
|
|
ENUNCIADA !
|
|
|
Postada em 30/08/2004 16:02 hs
pessoal, onde está o erro, nesse cod, tá dando erro de sintaxe sql = " select * from [Base Dados de Produção] where [CPF/CNPJ]='" & txtcpf.Text "' & order by [dataserviço] limit 1"
|
|
|
|
Postada em 30/08/2004 16:08 hs
Tenta assim sql = " select * from [Base Dados de Produção] where [CPF/CNPJ]='" + txtcpf.Text + "*' order by [dataserviço] limit 1;" T+
João Carlos Junior Administrador de Redes - Windows 2003 Srv, Linux Desenvolvedor Visual Basic 6.0 com Access, SQL Server, VB .Net e Crystal Reports X Iniciante em C# e ASP .NET
|
|
|
GAFA
|
SÃO PAULO SP - BRASIL
|
|
Postada em 30/08/2004 16:15 hs
Estou usando o accesss, naum deu certo, valeu pela tentativa
|
|
|