Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Transferring character field into numeric field
Message
 
 
À
22/10/2012 12:20:04
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Versions des environnements
SQL Server:
SQL Server 2008
Application:
Web
Divers
Thread ID:
01555436
Message ID:
01555469
Vues:
42
>>>>1e5 or 1d4 should be treated as numeric by isnumeric function. In fact, Sergey has a blog on this very topic
>>>>http://berezniker.com/content/pages/sql/microsoft-sql-server/isnumericex-udf-data-type-aware
>>>
>>>This is a sophisticated technique. Thanks for the reference
>>>
>>>However, this one also uses the WHERE approach. Thus, all records not eligible will not be taken into consideration. I am looking at including all records but to convert the non numeric values from the character field into 0, when this is not something that SQL Server could convert. I do not know if that is possible.
>>
>>It is possible. Simply use CASE statement, e.g.
>>
>> select case when MyColumnName NOT LIKE '%[^0-9]%' then 0 else convert(int, MyColumnName) END as Converted
>>
>>
>>Also, in SQL 2012 you may want to look at TRY_CONVERT function.
>
>You miss the decimal point:
>
>SELECT CASE WHEN '1.0' LIKE '%[^0-9]%'  THEN 'not number' ELSE 'number' END
>
I've been thinking about integer numbers.
If it's not broken, fix it until it is.


My Blog
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform