I'm trying to retrieve an ordered (descending) result set of link_stats for urls that begin with a common substring. I'm trying to use the following:
SELECT url,
normalized_url,
share_count,
like_count,
comment_count,
total_count,
commentsbox_count,
comments_fbid,
click_count
FROM link_stat
WHERE substr(url, 0, 22) = "http://www.example.com";
but I keep getting the following error message:
Your statement is not indexable. The WHERE clause must contain an indexable column.
Any advice on how to get this working ALONG with the additional syntax to order descending by 'total_count' would be most appreciated.
Thanks!
