Created 08-24-2017 03:52 PM
Hive: I have a column name(varchar), table has now both alphabets and pure numeric values. I want to count the column name that has only numeric values
Created 08-24-2017 09:37 PM
@Prabhu Muthaiyan You can write query similar to this to get count of numberic values:
select count(*) from <tableName> where cast(<colName> as double) is not NULL
Created 08-24-2017 09:37 PM
@Prabhu Muthaiyan You can write query similar to this to get count of numberic values:
select count(*) from <tableName> where cast(<colName> as double) is not NULL
Created 07-18-2018 11:30 AM
@Prabhu Muthaiyan , you can use rlike regex
select count(*) from <tableName> where <colName> not rlike '[^0-9]' ;