This video is explaining what is SteemSQL Wrapper and how and why to use it. The language used is french.
Voici un tout nouveau projet dont presque (si ce n'est même personne excepté le développeur) n'en a parlé ! Et pourtant... Je vous promets, que c'est sympa... Si vous aimez les données!
Suivez-moi, je vous fais visiter SteemSQL en vidéo.
Cette application web est développé par @emptyname.
Essayez SteemSQL Wrapper en allant sur sql.steemhelpers.com
Présentation du projet (en anglais) : SteemSQL Wrapper
Articles les plus commentés
SELECT title AS [titre], children AS [commentaires], url
FROM Comments (NOLOCK)
WHERE
author = 'roxane'
ORDER BY children DESC
Stats globales par mois
SELECT YEAR(created) AS [année], MONTH(created) AS [mois], COUNT(*) AS [articles], SUM(net_votes) AS votes, SUM(children) AS commentaires
FROM Comments (NOLOCK)
WHERE
author = 'roxane'
AND depth = 0
AND created > '2016-01-01'
GROUP BY YEAR(created), MONTH(created)
ORDER BY YEAR(created), MONTH(created)
Posted on Utopian.io - Rewarding Open Source Contributors