sql where is not number

Solutions on MaxInterview for sql where is not number by the best coders in the world

showing results for - "sql where is not number"
Luigi
29 Aug 2019
1SELECT CustomerId FROM CUSTOMER_TABLE 
2WHERE CustomerId ISNUMERIC(CustomerId) = 0
3
4-- if you want to get only number try to change 0 to 1
5
Erica
14 Sep 2016
1SELECT ISNUMERIC(250) AS Result;
2