I have a column which has tweet data some of it contains more than 3 http.(url).i have to count the rows which has more than 3 https.how to write query in hive
I have a column which has tweet data some of it contains more than 3 http.(url).i have to count the rows which has more than 3 https.how to write query in hive
i used the below query to sort out the no of url s in the column ,
select count(col.name) from table name where colname like %http%;
do any one could help me to solve the above scenario
1 ACCEPTED SOLUTION
Accepted Solutions
Re: I have a column which has tweet data some of it contains more than 3 http.(url).i have to count the rows which has more than 3 https.how to write query in hive
Re: I have a column which has tweet data some of it contains more than 3 http.(url).i have to count the rows which has more than 3 https.how to write query in hive