Created 06-06-2016 01:01 PM
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
Created 06-06-2016 02:40 PM
@Hemalatha Panneerselvam is this what you looking for
SELECT count(col_name) FROM table where col_name like '%http%' having count(col_name) >=3
View solution in original post