PESQUISA SQL
Como retornar todos os registros com o nome começando com "te"?
Select * from tabela where ????
Select * from tabela where ????
selec * from tabela where nome like 'te%'
amigo tem que ficar assim
vt = "te"
select * from CadCliente where razaosocial like '" & vt & "%'"
vt = "te"
select * from CadCliente where razaosocial like '" & vt & "%'"
Tópico encerrado , respostas não são mais permitidas