STEEM SQL 系列之 每个月到底能挣多少?SteemSQL Tutorial: What is Your Monthly Income on Steemit?

in #cn7 years ago (edited)

Thank you @arcange for creating STEEMSQL!

STEEM SQL Tutorial Series:

Have you wondered that the your earnings on STEEMIT can really make a difference? Have you thought about making a living by full time blogging on steemit? The easiest way is to look at your historic earning data monthly so you get a rough idea via the following SQL

select 
    FORMAT(created, 'yyyy-MM') Month, sum(total_payout_value) Min,  sum(total_payout_value) + sum(curator_payout_value) Max
from 
    Comments (NOLOCK)
where
    author='justyy'
group by
    FORMAT(created, 'yyyy-MM')
order by
    FORMAT(created, 'yyyy-MM') desc

We know that 75% are author rewards, so if we group the data by months, sum the author rewards, that will be the minimal level of payout. Suppose you get all other 25% curation rewards e.g. always upvotes at 30 min, that is the maximum (in theory) you earn.

In my case, here is my earning data per calendar month, I have no idea why the Sept (this month) is zero earnings (maybe data is not synchronized into steemSQL from the blockchain yet?)

It would be great if you could share yours in the comments (the data is public anyway). In 7 days, I will give 1 SBD to whoever has the lowest and highest payout respectively (in August 2017).


Image Credit: Pixabay.com

感谢 @arcange 创造了 STEEMSQL!

STEEM SQL 系列:

@jubi 大哥一直说要靠 STEEMIT 来买别墅,这梦想很好,却遥不可及。对我来说,STEEMIT的收入能让我改善一下生活,但是远远到不了能养家糊口的主业。

使用 LINQPAD + STEEMSQL,我们可以跑一下下面的SQL,来看看我每个月在STEEMIT上的收入情况:

select 
    FORMAT(created, 'yyyy-MM') 月份, sum(total_payout_value) 最小收入,  sum(total_payout_value) + sum(curator_payout_value) 最大收入
from 
    Comments (NOLOCK)
where
    author='justyy'
group by
    FORMAT(created, 'yyyy-MM')
order by
    FORMAT(created, 'yyyy-MM') desc

75%是作者奖励,25%是点赞奖励,所以最少拿到75%,25%理论最大值(但远到不了)。奇怪的是9月份(这个月)数据为0,也许是数据还没从区块链同步到 steemsql 上。

欢迎把你们的收入在评论中晒一晒,反正这些数据都是公开的。7天后,我会给评论中2017年8月份最低和最高收入的各送1 SBD。

// Later, it may be reposted to my blogs: justyy.com, helloacm.com and codingforspeed.com 稍后同步到我的中文博客和英文计算机博客

Originally published at https://steemit.com Thank you for reading my post, feel free to Follow, Upvote, Reply, ReSteem (repost) @justyy which motivates me to create more quality posts.

原文首发于 https://Steemit.com 首发。感谢阅读,如有可能,欢迎Follow, Upvote, Reply, ReSteem (repost) @justyy 激励我创作更多更好的内容。

@justyy 是CN 区的点赞机器人,对优质内容进行点赞,只要代理给 @justyy 每天收利息(100 SP 每天0.04 SBD)并且能获得一次相应至少2倍的点赞,可以认为是VP 200%+ ,详细请看:


欢迎你发表你的见解和看法,特别有意思的评论我可能会奖励你1 SBD哦。
Interesting Comments might be rewarded with 1 SBD.

Sort:  

This post recieved an upvote from minnowpond. If you would like to recieve upvotes from minnowpond on all your posts, simply FOLLOW @minnowpond

is their an amount lower than 0? :D

不懂计算机语言,文章大概看懂了,
SQL=收钱啦,哈哈

有创意,牛B

真勤快!

勤能补拙 ^_^

我测试了一下,感觉total_payout_value, curator_payout_value, total_pending_payout_value, pending_payout_value这几个都不太靠谱。
total_pending_payout_value好像总是0.
pending_payout_value和(total_payout_value, curator_payout_value)有时前者是0,有时后者是0,疯疯癫癫的看不出规律。
你把这几个全加在一起,还靠谱一点。搞不清楚正确的收入数值是还有其他开关,还是SteemSQL的数据不靠谱。

我一般就是全加起来, 你去掉那个 (NOLOCK) 试试,因为用上这个关键字可能数据获取不全。

我根本没有用NOLOCK,另外写了一段代码显示所有帖子(非评论)的total_payout_value, curator_payout_value, total_pending_payout_value, pending_payout_value。完全搞不懂这几个数字是怎么弄的。

IMG_8482.JPG

@justyy 我刚试了可是好像不太正确,好像少了3倍为什么呢?

数据没同步完好像,你试试去掉 (NOLOCK)

Loading...

很有帮助,已经收藏了

Coin Marketplace

STEEM 0.19
TRX 0.14
JST 0.030
BTC 62904.98
ETH 3359.08
USDT 1.00
SBD 2.46