Pesquisar números na coluna de descrição

10/01/2020 10:29
Se precisar buscar apenas colunas que tenha número na descrição
 
select PLACA_CARRO from TB_VEICULO where isnumeric(PLACA_CARRO)=1
 
 
 
Se precisar buscar colunas que não tenha número na descrição
 
select PLACA_CARRO from TB_VEICULO where isnumeric(PLACA_CARRO)=0
select coluna,* from tabela where isnumeric(coluna)=0Se precisar buscar apenas colunas que tenha número na descrição
 
select COLUNA,* from TABELA where isnumeric(COLUNA)=1
 
Se precisar buscar colunas que não tenha número na descrição
 
select coluna,* from tabela where isnumeric(coluna)=0Se precisar buscar apenas colunas que tenha número na descrição
 
select COLUNA,* from TABELA where isnumeric(COLUNA)=1
 
Se precisar buscar colunas que não tenha número na descrição
 
select coluna,* from tabela where isnumeric(coluna)=0Se precisar buscar apenas colunas que tenha número na descrição
 
select COLUNA,* from TABELA where isnumeric(COLUNA)=1
 
Se precisar buscar colunas que não tenha número na descrição
 
select coluna,* from tabela where isnumeric(coluna)=0

Crie um site gratuito Webnode