I will start the tutorial series of getting STEEM data via sql.steemdata.com. The tool we are using here is [LinqPad](https://www.linqpad.net/) and today, I am going to show you how to get the list of authors in the last 7 days who have published posts on the first tag 'cn'. The results are sorted by total pending payout. You can also contact me @justyy if you want to learn a particular SQL but you don't know how to write it, which then may be included in the next posts. SQL很简单,我认为是 Sexy Query (查询) Language 语言。这个语言很强大,主要用于操作数据库,现在比较流行的有 MSSQL, [MYSQL](https://justyy.com/archives/5043), SQL SERVER, ORACLE 等。 我们用 [LinqPad](https://www.linqpad.net/) 来查询 steemsql.com。这个系列每次会讲一个语句,如果你觉得你想知道,但是不清楚怎么写的,很欢迎告诉我,我将会整理到下一系列。 # 基础准备工作 下载 [LinqPad](https://www.linqpad.net/) (免费版就够用了)。然后新建数据库连接:数据库地址是`sql.steemsql.com` 用户名是 `steemit` 密码是 `steemit` 这里不重复贴图了,详细可以看 @joythewanderer 的帖子关于如何[添加链接](https://steemit.com/steemit/@joythewanderer/sql-for-dummies-1-configure-linqpad-with-steemsql-database-sql)。  # 获取最近7天 CN 区用户发贴量,点赞数和估计收益值 新建 SQL 查询语句,输入以下: ``` select top 30 author, count(author) as cnt, sum(net_votes) as votes, sum(pending_payout_value) as pending_payout_value from Comments where title<>'' and dirty='False' and category='cn' and parent_author='' and datediff(hour, created, GETDATE()) between 0 and 7*24 group by author order by pending_payout_value desc ``` Run the SQL to fetch the top 30 authors, using the LinqPad: 显示结果如下:  - 这里 `top 30` 就是取前30个结果 - 按 估计收益值从大到小排序:`order by pending_payout_value desc` - 限制 CN 社区: ` category='cn' ` - 好的帖子 e.g 不被踩过的帖子:`dirty='False` - 是主贴(并不是评论)`parent_author='' ` 和 `title <> ''` 标题不为空,两个条件一结合比较严格。我发现像 @minnowbooster 的回复也是有带标题的。 - 时间是过去7天:` datediff(hour, created, GETDATE()) between 0 and 7*24 ` - 把所有按 `author` 的帖子分组,取数量,点赞数 还有潜在收益。 前三甲: @oflyhigh @rivalhw @tumutanzi,大腿还有地么? 另:我会今晚把这个排名加到我的[ 每日榜单里](https://steemit.com/ranking/@justyy/2017-08-26-cn),多提提意见。我想弄一个 [有心的机器人](https://steemit.com/cn/@oflyhigh/28gqnr) (至少 half human, half bot),让你们都爱上我,哈哈。 更新:[今日榜单已经加上](https://steemit.com/ranking/@justyy/2017-08-26-cn)。 https://justyy.com/wp-content/uploads/2017/07/justyy-steemit.png 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 激励我创作更多更好的内容。 // Later, it will be reposted to my blogs: [justyy.com](https://justyy.com), [helloacm.com](https://helloacm.com) and [codingforspeed.com](https://codingforspeed.com) 稍后同步到我的[中文博客](https://justyy.com)和英文[计算机](https://helloacm.com)[博客](https://codingforspeed.com)。 - [STEEM SQL 系列之 如何获取最近7天 CN 区用户发贴量,点赞数和估计收益值](https://justyy.com/archives/5198) - [SteemSQL Tutorial: How to Get Authors Order By Potential Payout in Last 7 days?](https://helloacm.com/steemsql-tutorial-how-to-get-authors-order-by-potential-payout-in-last-7-days/) # 近期热贴 - [LOGO 海龟作画 系列二 之定义个过程来 say Hello, World](https://steemit.com/cn/@justyy/logo-say-hello-world-logo-turtle-graphics-series-2-define-procedure-and-say-hello-world) - [写在2017年七夕: 爱情亲情,那些美好的回忆(就是这么任性的撒狗粮)](https://steemit.com/cn/@justyy/photography-of-our-love-2017) - [LOGO 海龟作画 系列 一 之 给孩子最好的编程启蒙语言](https://steemit.com/cn/@justyy/logo-logo-turtle-graphics-series-1-best-introductory-programming-for-kids) - [通过脑残语言来保护你的STEEM钱包密码](https://steemit.com/cn/@justyy/steem-use-brainfuck-to-protect-your-steem-wallet-password-s) - [不会写程序也能自动点赞 - 通过 SteemVoter 添加点赞规则](https://steemit.com/cn/@justyy/steemvoter) - [你好秋天,英国8月份的到Hitchin看薰衣草](https://steemit.com/cn/@justyy/8-hitchin) - [Fen Drayton村每年举行1万米比赛](https://steemit.com/cn/@justyy/fen-drayton-1) - [碎碎念第365天](https://steemit.com/cn/@justyy/365-the-day-365-at-steemit) # Recent Popular Posts - [Logo Turtle Graphics - Series 2 - Define Procedure and Say Hello, World](https://steemit.com/cn/@justyy/logo-say-hello-world-logo-turtle-graphics-series-2-define-procedure-and-say-hello-world) - [Photography of Our Love](https://steemit.com/cn/@justyy/photography-of-our-love-2017) - [Logo Turtle Graphics - Series 1 - Best Introductory Programming for Kids](https://steemit.com/cn/@justyy/logo-logo-turtle-graphics-series-1-best-introductory-programming-for-kids) - [Use BrainFuck to Protect Your Steem Wallet Password(s)](https://steemit.com/cn/@justyy/steem-use-brainfuck-to-protect-your-steem-wallet-password-s) - [Hello Autumn! Hello Lavender](https://steemit.com/cn/@justyy/8-hitchin) - [The Day 365 at SteemIt](https://steemit.com/cn/@justyy/365-the-day-365-at-steemit) - [The profiler told me I wrote some useless code](https://steemit.com/cn/@justyy/the-profiler-told-me-i-wrote-some-useless-code-an-example-of-defensive-programming) https://justyy.com/gif/steemit.gif Tags: #cn #cn-programming #steem-dev #steem-sql #steemit
author | justyy |
---|---|
permlink | steem-sql-7-cn |
category | cn |
json_metadata | {"tags":["cn","cn-programming","steem-dev","steem-sql","steemit"],"users":["justyy","joythewanderer","minnowbooster","oflyhigh","rivalhw","tumutanzi"],"image":["https://steemitimages.com/DQmYNKAEBavXYDjR7G9iRGJ6ADtXJU7cNwkJ7XSPeG3zbmu/image.png","https://steemitimages.com/DQmb3UXnfAMuTM3w9MnAsnni6cu5Lyohk9hoaQryi27Tofc/image.png","https://justyy.com/wp-content/uploads/2017/07/justyy-steemit.png","https://justyy.com/gif/steemit.gif"],"links":["https://www.linqpad.net/","https://justyy.com/archives/5043","https://steemit.com/steemit/@joythewanderer/sql-for-dummies-1-configure-linqpad-with-steemsql-database-sql","https://steemit.com/ranking/@justyy/2017-08-26-cn","https://steemit.com/cn/@oflyhigh/28gqnr","https://steemit.com","https://Steemit.com","https://justyy.com","https://helloacm.com","https://codingforspeed.com","https://justyy.com/archives/5198","https://helloacm.com/steemsql-tutorial-how-to-get-authors-order-by-potential-payout-in-last-7-days/","https://steemit.com/cn/@justyy/logo-say-hello-world-logo-turtle-graphics-series-2-define-procedure-and-say-hello-world","https://steemit.com/cn/@justyy/photography-of-our-love-2017","https://steemit.com/cn/@justyy/logo-logo-turtle-graphics-series-1-best-introductory-programming-for-kids","https://steemit.com/cn/@justyy/steem-use-brainfuck-to-protect-your-steem-wallet-password-s","https://steemit.com/cn/@justyy/steemvoter","https://steemit.com/cn/@justyy/8-hitchin","https://steemit.com/cn/@justyy/fen-drayton-1","https://steemit.com/cn/@justyy/365-the-day-365-at-steemit","https://steemit.com/cn/@justyy/the-profiler-told-me-i-wrote-some-useless-code-an-example-of-defensive-programming"],"app":"steemit/0.1","format":"markdown"} |
created | 2017-08-26 16:35:06 |
last_update | 2017-09-02 09:18:24 |
depth | 0 |
children | 13 |
last_payout | 2017-09-02 16:35:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 24.490 HBD |
curator_payout_value | 7.163 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,090 |
author_reputation | 280,616,224,641,976 |
root_title | "STEEM SQL 系列之 如何获取最近7天 CN 区用户发贴量,点赞数和估计收益值 SteemSQL Tutorial: How to Get Authors Order By Potential Payout in Last 7 days?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,948,792 |
net_rshares | 7,836,789,582,960 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lafona-miner | 0 | 905,519,458,645 | 13.33% | ||
justtryme90 | 0 | 342,011,261,290 | 20% | ||
fundurian | 0 | 36,853,714,604 | 25% | ||
joythewanderer | 0 | 42,016,385,413 | 33% | ||
ace108 | 0 | 188,085,374,045 | 12% | ||
myfirst | 0 | 197,100,730,326 | 100% | ||
cryptoninja | 0 | 84,709,872 | 2% | ||
kyriacos | 0 | 61,962,666,775 | 10% | ||
lemouth | 0 | 28,522,622,405 | 20% | ||
anarchyhasnogods | 0 | 38,117,135,148 | 20% | ||
tumutanzi | 0 | 1,869,076,280,301 | 11% | ||
larus | 0 | 296,047,309 | 100% | ||
penguinpablo | 0 | 340,604,287,934 | 25% | ||
justyy | 0 | 420,535,854,434 | 100% | ||
burkis | 0 | 158,945,555 | 100% | ||
upperty | 0 | 156,436,010 | 100% | ||
bomathzulugore | 0 | 155,326,830 | 100% | ||
cordatusishnris | 0 | 157,548,430 | 100% | ||
steemstem | 0 | 196,358,554,381 | 20% | ||
happyukgo | 0 | 1,695,587,365 | 100% | ||
the-devil | 0 | 4,195,281,556 | 20% | ||
jubi | 0 | 17,425,565,824 | 100% | ||
akor | 0 | 461,125,512 | 100% | ||
ahiles | 0 | 454,765,351 | 100% | ||
oliva4ka | 0 | 460,613,600 | 100% | ||
awesomianist | 0 | 978,478,707 | 2% | ||
haroldponefg | 0 | 459,174,644 | 100% | ||
oxotnic | 0 | 465,976,560 | 100% | ||
moan | 0 | 454,896,840 | 100% | ||
seledkka | 0 | 461,246,152 | 100% | ||
atomy | 0 | 453,965,703 | 100% | ||
cjiohuk | 0 | 469,939,169 | 100% | ||
malaron | 0 | 448,565,165 | 100% | ||
chudik | 0 | 464,828,785 | 100% | ||
marrapi | 0 | 468,251,944 | 100% | ||
dunybofy | 0 | 462,107,557 | 100% | ||
darksoons | 0 | 438,503,829 | 100% | ||
etthrom | 0 | 459,484,358 | 100% | ||
hammadakhtar | 0 | 1,192,611,426 | 10% | ||
htliao | 0 | 1,037,628,684,810 | 6% | ||
cyclope | 0 | 992,539,868 | 15% | ||
sv67216721 | 0 | 3,939,151,035 | 5% | ||
mobbs | 0 | 16,672,981,985 | 20% | ||
vikk | 0 | 553,085,304 | 100% | ||
nrg | 0 | 372,943,676 | 1.11% | ||
linuslee0216 | 0 | 1,964,715,126,330 | 10% | ||
viralcutz | 0 | 650,444,329 | 10% | ||
aaronli | 0 | 18,501,637,045 | 100% | ||
shenchensucc | 0 | 12,159,659,758 | 100% | ||
xqmyzmkrbv5f | 0 | 546,159,987 | 100% | ||
nataliejohnson | 0 | 496,097,419 | 5% | ||
sweeti | 0 | 37,421,755,421 | 50% | ||
shirlam | 0 | 1,343,186,689 | 100% | ||
ovij | 0 | 1,077,849,327 | 20% | ||
hannahwu | 0 | 5,848,081,530 | 37% | ||
viralvid | 0 | 50,192,181 | 80% | ||
davidzack | 0 | 386,947,225 | 100% | ||
silcenord | 0 | 532,858,188 | 100% | ||
kangnajiang | 0 | 1,677,216,001 | 100% | ||
aafeng | 0 | 0 | 0% | ||
fakire1sadaka | 0 | 85,204,201 | 50% | ||
lichalker | 0 | 535,956,201 | 100% | ||
tvb | 0 | 4,619,364,629 | 100% | ||
glebovene | 0 | 527,293,652 | 100% | ||
ostdait | 0 | 591,072,305 | 100% | ||
aydam | 0 | 561,786,791 | 100% | ||
meralekse | 0 | 527,597,722 | 100% | ||
bellushiya | 0 | 566,591,929 | 100% | ||
laximoss | 0 | 969,314,714 | 100% | ||
mooncryption | 0 | 1,992,807,285 | 80% | ||
renzhichu | 0 | 4,092,516,364 | 100% | ||
bullda | 0 | 2,349,691,225 | 100% | ||
anadikc | 0 | 1,172,924,020 | 100% | ||
olezhych | 0 | 1,009,751,651 | 100% | ||
gemsborg | 0 | 52,228,533 | 100% | ||
superbing | 0 | 6,120,828,898 | 100% | ||
dailyfortune | 0 | 2,563,754,584 | 100% | ||
artupasnaidra | 0 | 116,062,966 | 100% | ||
dailystats | 0 | 2,623,927,428 | 100% |
Your posts are very informative but its sad i have to wait once in a while to get them in english. Most of the time i just copy your headlines to google translate to see what it means. Finally after 10 days , I am reading one of your blogs again. // 稍后同步到我的中文博客和英文计算 机博客。 Shāo hòu tóngbù dào wǒ de zhōngwén bókè hé yīngwén jì suàn jī bókè. // later sync to my Chinese blog and English calculations Machine blog. I guess you know what i mean now..Thanks for the language conversions you are doing. Regards, Anadi
author | anadikc |
---|---|
permlink | re-justyy-steem-sql-7-cn-20170827t102020889z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-27 10:20:21 |
last_update | 2017-08-27 10:20:21 |
depth | 1 |
children | 2 |
last_payout | 2017-09-03 10:20:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 516 |
author_reputation | 269,648,682,949 |
root_title | "STEEM SQL 系列之 如何获取最近7天 CN 区用户发贴量,点赞数和估计收益值 SteemSQL Tutorial: How to Get Authors Order By Potential Payout in Last 7 days?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,012,781 |
net_rshares | 0 |
Thanks for your suggestions. I'll try my best to make my posts bilingual..
author | justyy |
---|---|
permlink | re-anadikc-re-justyy-steem-sql-7-cn-20170827t102224816z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-27 10:22:24 |
last_update | 2017-08-27 10:22:24 |
depth | 2 |
children | 1 |
last_payout | 2017-09-03 10:22:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 74 |
author_reputation | 280,616,224,641,976 |
root_title | "STEEM SQL 系列之 如何获取最近7天 CN 区用户发贴量,点赞数和估计收益值 SteemSQL Tutorial: How to Get Authors Order By Potential Payout in Last 7 days?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,012,903 |
net_rshares | 1,064,096,018 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anadikc | 0 | 1,064,096,018 | 100% |
Thank you.
author | anadikc |
---|---|
permlink | re-justyy-re-anadikc-re-justyy-steem-sql-7-cn-20170827t103733800z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-27 10:37:33 |
last_update | 2017-08-27 10:37:33 |
depth | 3 |
children | 0 |
last_payout | 2017-09-03 10:37:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 269,648,682,949 |
root_title | "STEEM SQL 系列之 如何获取最近7天 CN 区用户发贴量,点赞数和估计收益值 SteemSQL Tutorial: How to Get Authors Order By Potential Payout in Last 7 days?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,013,764 |
net_rshares | 0 |
I am Cornholio! You will co-operate with my bunghole!
author | cornholio |
---|---|
permlink | re-justyy-steem-sql-7-cn-20170902t094614250z |
category | cn |
json_metadata | {"tags":["cn"],"app":"meep_bot/0.0.1"} |
created | 2017-09-02 09:46:15 |
last_update | 2017-09-02 09:46:15 |
depth | 1 |
children | 0 |
last_payout | 2017-09-09 09:46:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 606,749,206,056 |
root_title | "STEEM SQL 系列之 如何获取最近7天 CN 区用户发贴量,点赞数和估计收益值 SteemSQL Tutorial: How to Get Authors Order By Potential Payout in Last 7 days?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,632,938 |
net_rshares | 0 |
WOW NICE LIKE IT I am voting for you, you too have voted, so good that we can go ahead with one another.
author | holl.boll |
---|---|
permlink | re-justyy-steem-sql-7-cn-20170827t044517216z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-27 04:45:15 |
last_update | 2017-08-27 04:45:15 |
depth | 1 |
children | 0 |
last_payout | 2017-09-03 04:45:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 104 |
author_reputation | -30,357,862,109 |
root_title | "STEEM SQL 系列之 如何获取最近7天 CN 区用户发贴量,点赞数和估计收益值 SteemSQL Tutorial: How to Get Authors Order By Potential Payout in Last 7 days?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,993,230 |
net_rshares | 0 |
你也开始玩简单的了~~
author | tvb |
---|---|
permlink | re-justyy-steem-sql-7-cn-20170828t104053619z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-28 10:40:57 |
last_update | 2017-08-28 10:40:57 |
depth | 1 |
children | 7 |
last_payout | 2017-09-04 10:40:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 35,098,102,223,749 |
root_title | "STEEM SQL 系列之 如何获取最近7天 CN 区用户发贴量,点赞数和估计收益值 SteemSQL Tutorial: How to Get Authors Order By Potential Payout in Last 7 days?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,110,381 |
net_rshares | 0 |
不简单没有人赞啊 可以看看我的每日排行 : - [Daily Top 30 Authors in [CN] 每日cn社区之【请再给我一次机会】+【过去7天收益排行榜】 (2017-08-28)](https://steemit.com/cn/@justyy/daily-top-30-authors-in-cn-cn7-2017-08-28) - [Daily Top 30 Authors in [CN] 每日cn社区之【请再给我一次机会】+【过去7天收益排行榜】 (2017-08-27)](https://steemit.com/stats/@justyy/daily-top-30-authors-in-cn-cn7-2017-08-27)
author | justyy |
---|---|
permlink | re-tvb-re-justyy-steem-sql-7-cn-20170828t104707739z |
category | cn |
json_metadata | {"tags":["cn"],"links":["https://steemit.com/cn/@justyy/daily-top-30-authors-in-cn-cn7-2017-08-28","https://steemit.com/stats/@justyy/daily-top-30-authors-in-cn-cn7-2017-08-27"],"app":"steemit/0.1"} |
created | 2017-08-28 10:47:09 |
last_update | 2017-08-28 13:54:36 |
depth | 2 |
children | 6 |
last_payout | 2017-09-04 10:47:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 326 |
author_reputation | 280,616,224,641,976 |
root_title | "STEEM SQL 系列之 如何获取最近7天 CN 区用户发贴量,点赞数和估计收益值 SteemSQL Tutorial: How to Get Authors Order By Potential Payout in Last 7 days?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,110,857 |
net_rshares | 2,324,050,007 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dailystats | 0 | 2,324,050,007 | 100% |
我觉得简单哈哈哈,我今天工作用到了api接口,就是在前端用ajax,刚好前几天你提过我当时就试了一下,今天直接用上了。你真是我的明灯哈哈哈
author | tvb |
---|---|
permlink | re-justyy-re-tvb-re-justyy-steem-sql-7-cn-20170828t135258732z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-28 13:53:03 |
last_update | 2017-08-28 13:53:03 |
depth | 3 |
children | 2 |
last_payout | 2017-09-04 13:53:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 35,098,102,223,749 |
root_title | "STEEM SQL 系列之 如何获取最近7天 CN 区用户发贴量,点赞数和估计收益值 SteemSQL Tutorial: How to Get Authors Order By Potential Payout in Last 7 days?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,125,409 |
net_rshares | 0 |
哈哈再给你几次机会了,我都看了呢,因为没有我,我就默默的点了个赞然后离去了哈哈哈
author | tvb |
---|---|
permlink | re-justyy-re-tvb-re-justyy-steem-sql-7-cn-20170828t135642250z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-28 13:56:45 |
last_update | 2017-08-28 13:56:45 |
depth | 3 |
children | 2 |
last_payout | 2017-09-04 13:56:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 35,098,102,223,749 |
root_title | "STEEM SQL 系列之 如何获取最近7天 CN 区用户发贴量,点赞数和估计收益值 SteemSQL Tutorial: How to Get Authors Order By Potential Payout in Last 7 days?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,125,759 |
net_rshares | 0 |