Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Controlla se il campo è numerico, quindi esegui il confronto solo su quei campi in un'istruzione?

funziona per te?

select * from purchaseorders
where (case when IsNumeric(purchase_order_number) = 1
       then cast(purchase_order_number as int)
       else 0 end) >= 7