Ir para conteúdo

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

asdruboows

Como selecionar para buscar em TODAS as tabelas?

Recommended Posts

if busca_por = 1 thenSet Rs = Conectar.Execute("select * from dados Where nome Like '%"& busca &"%'")end ifif busca_por = 2 thenSet Rs = Conectar.Execute("select * from dados Where tel Like '%"& busca &"%'")end ifif busca_por = 3 thenSet Rs = Conectar.Execute("select * from dados Where email Like '%"& busca &"%'")end if

Eu consigo selecinar em cada uma, mas e se eu quiser em todas ao mesmo tempo tem como?

 

Tipo

if busca_por = 4 thenSet Rs = Conectar.Execute("select * from dados Where * Like '%"& busca &"%'")end if

Isso não deu certo é claro! hehe...

Mas e ai?

Compartilhar este post


Link para o post
Compartilhar em outros sites

Tente isso:Set Rs = Conectar.Execute("select * from dados Where nome Like '%"& busca &"%'")Set Rs = Conectar.Execute("select * from dados Where tel Like '%"& busca &"%'")Set Rs = Conectar.Execute("select * from dados Where email Like '%"& busca &"%'")Set Rs = Conectar.Execute("select * from dados Where email Like '%"& busca &"%' AND nome Like '%"& busca &"%' AND tel Like '%"& busca &"%' AND email Like '%"& busca &"%' ")

Compartilhar este post


Link para o post
Compartilhar em outros sites

É só essa linha:Set Rs = Conectar.Execute("select * from dados Where email Like '%"& busca &"%' AND nome Like '%"& busca &"%' AND tel Like '%"& busca &"%' AND email Like '%"& busca &"%' ")

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.