How to find out how much customers uses the product comparison feature?

SELECT
(SELECT COUNT(DISTINCT customer_id) FROM catalog_compare_item)
/
(SELECT COUNT(*) FROM customer_entity)
* 100 as '%'

In my case:
03

So, the product comparison function is used only by 0.04% of registered customers of the store.
Also, the comparison feature is used by some part of anonymous visitors.

See also: