create account

SQL Script to get 2020 data from Hive Blockchain by bala41288

View this thread on: hive.blogpeakd.comecency.com
· @bala41288 · (edited)
$7.56
SQL Script to get 2020 data from Hive Blockchain
Two days back I shared [my 2020 data](https://leofinance.io/@bala41288/2020-a-small-recap-as-an-author-and-a-curator) in a nice tabulation along with some fancy bar charts. It was an interesting activity to prepare scripts for the same and get the data from Hive SQL. As it is now available [free of cost](https://peakd.com/hive-139531/@arcange/hivesql-free) to the users, Hive SQL is easy and handy to get our own reports. 

Yesterday after writing my article a few people came to my DM and asked me for the scripts to check their stats. I thought I would write an article and share the SQL script that I prepared to get the data for 2020. 

I really wanted to write a series of articles to share the common scripts that would be useful for anyone using Hive SQL to grab some data from the blockchain. But that is going to be a separate task and for now, I would better share the script I used to get this simple data for 2020. 

For those who are familiar with SQL scripts, this article would make some sense but for others, it shouldn't be a difficult task to get the data with the scripts. I use Heidi SQL to run the scrips and get the data from Hive SQL. But before that, you will need a subscription to Hive SQL to get the connection string. 

## Prerequisites

- A little knowledge of SQL scripts. 
- Hive SQL subscription and connection string. [This post](https://peakd.com/hive-139531/@arcange/hivesql-free) will help you get it. 
- A SQL server client like Heidi SQL or SQL Server Management Studio or any preferable SQL client. 

Hope all the above are ready and I would like to take you through the scripts directly. 

## Total Curation Rewards month-wise within a given date range

![image.png](https://images.hive.blog/DQmRtXCvWCiS8bPxmtEFC97Q6BCSX5KGM1nhK8bVD5jZXph/image.png)

```
SELECT  DATEPART(month, timestamp) AS Month, 
		sum(reward) AS TotalReward,  
        cast((((SELECT total_vesting_fund_hive 
                FROM dbo.DynamicGlobalProperties WITH (NOLOCK)) * sum(reward)) / 
              	(
                  SELECT total_vesting_shares 
                  FROM dbo.DynamicGlobalProperties WITH (NOLOCK))) as numeric(36,3)
            	) AS TotalHP
FROM "DBHive"."dbo"."VOCurationRewards"
WHERE curator = 'bala41288'  
AND timestamp >= '2020-01-01'
AND timestamp < '2020-12-31' 
GROUP BY DATEPART(month, TIMESTAMP)
ORDER BY MONTH ASC
```

## Total Author Rewards month-wise within a given date range

![image.png](https://images.hive.blog/DQmP2VMw5ZvhXz7yRcwcBbxpoRrTk8GiZQ3qupXP9HjYY6B/image.png)

```

SELECT DATEPART(month, timestamp) AS MONTH, 
		 sum(hbd_payout) AS TotalHBDPayout, 
		 sum(hive_payout) AS TotalHivePayout, 
		 sum(vesting_payout) AS TotalVestingPayout, 
		 cast((((SELECT total_vesting_fund_hive 
		 			FROM dbo.DynamicGlobalProperties WITH (NOLOCK)) * sum(vesting_payout)) / 
               			(
                          SELECT total_vesting_shares 
                          FROM dbo.DynamicGlobalProperties WITH (NOLOCK))
              			) as numeric(36,3)) AS TotalHP
FROM "DBHive"."dbo"."VOAuthorRewards"
WHERE author = 'bala41288'  
AND timestamp >= '2020-01-01'
AND timestamp < '2020-12-31' 
GROUP BY DATEPART(month, TIMESTAMP)
ORDER BY MONTH ASC
```
## Total count of Posts month-wise within a given date range

![image.png](https://images.hive.blog/DQmWPqQTCoSFGdfHX1eApAhNoWVVDZppgA3PKjcdn7BEQcv/image.png)

```

SELECT DATEPART(month, created) AS Month, 
		 count(permlink) AS TotalPosts		 
FROM "DBHive"."dbo"."Comments"
WHERE author = 'bala41288'  
AND created >= '2020-01-01'
AND created <= '2020-12-31' 
AND parent_author = ''
GROUP BY DATEPART(month, created)
ORDER BY MONTH ASC

```

## Total count of Comments month-wise within a given date range


![image.png](https://images.hive.blog/DQmUdxupVfp8dcLvjcHRwNacBwkbobNtmj8Abfa63LhmNvo/image.png)

```
SELECT DATEPART(month, created) AS Month, 
		 count(permlink) AS TotalPosts		 
FROM "DBHive"."dbo"."Comments"
WHERE author = 'bala41288'  
AND created >= '2020-01-01'
AND created <= '2020-12-31' 
AND parent_author = ''
GROUP BY DATEPART(month, created)
ORDER BY MONTH ASC
```

Hope the above scripts are useful. As I said, I will try to share similar scripts in the future. If you have any questions, please ask in the comments section. 

---
---

<center>

[![Kani Bot notification service](https://files.peakd.com/file/peakd-hive/bala41288/DDxrJxFV-kani-banner-15fps.gif)](https://discord.com/invite/S4x6PFz)

[
![image.png](https://files.peakd.com/file/peakd-hive/bala41288/46eaz12N-image.png)](https://discord.gg/bGmS2tE)

[![image.png](https://images.hive.blog/DQmag62WZkMSrJAx5bupB6C8QSTdzQfZoCMsk5dp5kEjn1v/image.png)](https://r.honeygain.me/BALA4F8CD5)

[![image.png](https://files.peakd.com/file/peakd-hive/bala41288/9hTRE5gg-image.png)
](https://netbox.global/r/balanbx)

<a href="https://www.publish0x.com?a=YRdG6knybD"><img src="https://cdn.publish0x.com/prod/fs/images/da2424398bd4625ed05e95650fd1fc59638d98e68350cf673d8b393558969644.png" width="728" height="90" /></a>

</center>

---

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@bala41288/sql-script-to-get-2020-data-from-hive-blockchain)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 227 others
properties (23)
authorbala41288
permlinksql-script-to-get-2020-data-from-hive-blockchain
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","hivesql","stem","data","development","neoxian","palnet","leo","ash","archon","ctp","leofinance"],"canonical_url":"https://leofinance.io/@bala41288/sql-script-to-get-2020-data-from-hive-blockchain","links":["https://leofinance.io/@bala41288/2020-a-small-recap-as-an-author-and-a-curator","https://peakd.com/hive-139531/@arcange/hivesql-free","https://discord.com/invite/S4x6PFz","https://discord.gg/bGmS2tE","https://r.honeygain.me/BALA4F8CD5","https://netbox.global/r/balanbx","https://www.publish0x.com?a=YRdG6knybD","https://leofinance.io/@bala41288/sql-script-to-get-2020-data-from-hive-blockchain"],"image":["https://images.hive.blog/DQmRtXCvWCiS8bPxmtEFC97Q6BCSX5KGM1nhK8bVD5jZXph/image.png","https://images.hive.blog/DQmP2VMw5ZvhXz7yRcwcBbxpoRrTk8GiZQ3qupXP9HjYY6B/image.png","https://images.hive.blog/DQmWPqQTCoSFGdfHX1eApAhNoWVVDZppgA3PKjcdn7BEQcv/image.png","https://images.hive.blog/DQmUdxupVfp8dcLvjcHRwNacBwkbobNtmj8Abfa63LhmNvo/image.png","https://files.peakd.com/file/peakd-hive/bala41288/DDxrJxFV-kani-banner-15fps.gif","https://files.peakd.com/file/peakd-hive/bala41288/46eaz12N-image.png","https://images.hive.blog/DQmag62WZkMSrJAx5bupB6C8QSTdzQfZoCMsk5dp5kEjn1v/image.png","https://files.peakd.com/file/peakd-hive/bala41288/9hTRE5gg-image.png","https://cdn.publish0x.com/prod/fs/images/da2424398bd4625ed05e95650fd1fc59638d98e68350cf673d8b393558969644.png"]}
created2021-01-16 12:53:12
last_update2021-01-16 13:09:18
depth0
children28
last_payout2021-01-23 12:53:12
cashout_time1969-12-31 23:59:59
total_payout_value4.091 HBD
curator_payout_value3.471 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,148
author_reputation1,518,985,861,020,528
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,401,543
net_rshares34,484,281,944,181
author_curate_reward""
vote details (291)
@beerlover ·
Sorry, you don't have enough staked BEER in your account. You need 24 BEER in your virtual fridge to give some of your BEER to others. To view or trade BEER go to [hive-engine.com](https://hive-engine.com/?p=market&t=BEER)
properties (22)
authorbeerlover
permlinkre-bala41288-sql-script-to-get-2020-data-from-hive-blockchain-20210117t044257505z
categoryhive-167922
json_metadata{"app":"beerlover/2.0"}
created2021-01-17 04:42:57
last_update2021-01-17 04:42:57
depth1
children0
last_payout2021-01-24 04:42:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length222
author_reputation25,764,988,873,156
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,411,621
net_rshares0
@bil.prag ·
thanks. i tuched SQL a bit but i don't really know where is what data located and how is it called, so this will help to learn a bit more.
👍  , , , ,
properties (23)
authorbil.prag
permlinkre-bala41288-qn1tcy
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-01-16 22:34:12
last_update2021-01-16 22:34:12
depth1
children0
last_payout2021-01-23 22:34:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length138
author_reputation457,917,222,520,332
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,408,788
net_rshares14,255,212,237
author_curate_reward""
vote details (5)
@dalz ·
properties (23)
authordalz
permlinkqn195j
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-01-16 15:17:42
last_update2021-01-16 15:17:42
depth1
children1
last_payout2021-01-23 15:17:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation1,920,243,275,838,078
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,403,167
net_rshares4,306,456,281
author_curate_reward""
vote details (5)
@bala41288 ·
Thanks buddy. :)

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@bala41288/re-dalz-2pmjxb)
properties (22)
authorbala41288
permlinkre-dalz-2pmjxb
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@bala41288/re-dalz-2pmjxb"}
created2021-01-16 19:18:48
last_update2021-01-16 19:18:48
depth2
children0
last_payout2021-01-23 19:18:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation1,518,985,861,020,528
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,406,439
net_rshares0
@gillianpearce ·
Thanks for this. I hope I can find some time to five this a go. &#128522;

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@gillianpearce/re-bala41288-39bdcp)
👍  , , , , ,
properties (23)
authorgillianpearce
permlinkre-bala41288-39bdcp
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@gillianpearce/re-bala41288-39bdcp"}
created2021-01-16 14:52:00
last_update2021-01-16 14:52:00
depth1
children1
last_payout2021-01-23 14:52:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length174
author_reputation59,802,144,649,255
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,402,864
net_rshares17,875,601,085
author_curate_reward""
vote details (6)
@bala41288 ·
Yeah sure. Once you get started, you will find this very interesting. :) Cheers!

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@bala41288/re-gillianpearce-6eykas)
properties (22)
authorbala41288
permlinkre-gillianpearce-6eykas
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@bala41288/re-gillianpearce-6eykas"}
created2021-01-16 19:21:15
last_update2021-01-16 19:21:15
depth2
children0
last_payout2021-01-23 19:21:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length181
author_reputation1,518,985,861,020,528
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,406,469
net_rshares0
@guurry123.leo ·
Very helpful thanks for sharing...
!BEER
properties (22)
authorguurry123.leo
permlinkre-bala41288-2021117t10120730z
categoryhive-167922
json_metadata{"tags":["hive-167922","hivesql","stem","data","development","neoxian","palnet","leo","ash","archon","ctp","leofinance"],"app":"ecency/3.0.11-mobile","format":"markdown+html"}
created2021-01-17 04:42:03
last_update2021-01-17 04:42:03
depth1
children0
last_payout2021-01-24 04:42:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation229,812,224,470
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,411,617
net_rshares0
@harpreetjanda ·
Thank you very much for sharing this information 
very useful.
Do you also have an ER diagram or some sort of documentation for different db tables ?
👍  , , ,
properties (23)
authorharpreetjanda
permlinkre-bala41288-2021116t152550666z
categoryhive-167922
json_metadata{"tags":["hive-167922","hivesql","stem","data","development","neoxian","palnet","leo","ash","archon","ctp","leofinance"],"app":"ecency/3.0.12-vision","format":"markdown+html"}
created2021-01-16 15:25:54
last_update2021-01-16 15:25:54
depth1
children1
last_payout2021-01-23 15:25:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length149
author_reputation70,859,113,251,800
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,403,258
net_rshares3,272,779,809
author_curate_reward""
vote details (4)
@bala41288 ·
The table structures are not that complicated. Initially, I was in your position looking for schema details, and later after I started connecting, it was pretty much straightforward. If you connect through Heidi SQL, you will be able to see the tables by yourself and can start writing queries. 

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@bala41288/re-harpreetjanda-3csczd)
properties (22)
authorbala41288
permlinkre-harpreetjanda-3csczd
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@bala41288/re-harpreetjanda-3csczd"}
created2021-01-16 19:20:27
last_update2021-01-16 19:20:27
depth2
children0
last_payout2021-01-23 19:20:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length396
author_reputation1,518,985,861,020,528
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,406,464
net_rshares0
@hivecoffee ·
Thanks for this! I am learning.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@hivecoffee/re-bala41288-5ihtdg)
properties (22)
authorhivecoffee
permlinkre-bala41288-5ihtdg
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@hivecoffee/re-bala41288-5ihtdg"}
created2021-01-24 00:06:42
last_update2021-01-24 00:06:42
depth1
children0
last_payout2021-01-31 00:06:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation19,616,217,679,256
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,526,218
net_rshares0
@imfarhad ·
hi @bala41288, thanks for sharing the sql scripts

One question, How do i get the Hive SQL subscription and connection string?

thanks
farhad kias
[imfarhad]
👍  , , ,
properties (23)
authorimfarhad
permlinkre-bala41288-2021116t1353228z
categoryhive-167922
json_metadata{"tags":["hivesql","stem","data","development","neoxian","palnet","leo","ash","archon","ctp","leofinance"],"app":"ecency/3.0.12-surfer","format":"markdown+html"}
created2021-01-16 13:05:00
last_update2021-01-16 13:05:00
depth1
children1
last_payout2021-01-23 13:05:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length157
author_reputation272,375,989,727,124
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,401,664
net_rshares3,280,034,253
author_curate_reward""
vote details (4)
@bala41288 ·
Hello @imfarhad. Thanks for the comments. This post will help you through the process. 

https://peakd.com/hive-139531/@arcange/hivesql-free
👍  
properties (23)
authorbala41288
permlinkre-imfarhad-2021116t183750519z
categoryhive-167922
json_metadata{"tags":["hivesql","stem","data","development","neoxian","palnet","leo","ash","archon","ctp","leofinance"],"app":"ecency/3.0.12-vision","format":"markdown+html"}
created2021-01-16 13:07:48
last_update2021-01-16 13:07:48
depth2
children0
last_payout2021-01-23 13:07:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length140
author_reputation1,518,985,861,020,528
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,401,703
net_rshares14,042,057,931
author_curate_reward""
vote details (1)
@nathanmars ·
I need to start playing around with Hive SQL

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@nathanmars/re-bala41288-59bvbg)
👍  
properties (23)
authornathanmars
permlinkre-bala41288-59bvbg
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@nathanmars/re-bala41288-59bvbg"}
created2021-01-16 14:29:48
last_update2021-01-16 14:29:48
depth1
children4
last_payout2021-01-23 14:29:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length142
author_reputation336,354,946,115,368
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,402,619
net_rshares1,734,659,641
author_curate_reward""
vote details (1)
@bala41288 ·
$0.05
Sure bro. It is not a big deal. If you need any help with any script/data do let me know. But it is really interesting to lookup data with Hive SQL. It is pretty handy. :) Cheers! !BEER

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@bala41288/re-nathanmars-2bjq81)
👍  
properties (23)
authorbala41288
permlinkre-nathanmars-2bjq81
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@bala41288/re-nathanmars-2bjq81"}
created2021-01-16 19:16:21
last_update2021-01-16 19:16:21
depth2
children0
last_payout2021-01-23 19:16:21
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length283
author_reputation1,518,985,861,020,528
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,406,399
net_rshares379,975,394,943
author_curate_reward""
vote details (1)
@beerlover ·
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p>Hey @nathanmars, here is a little bit of <code>BEER</code> from @bala41288 for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
👍  
properties (23)
authorbeerlover
permlinkre-nathanmars-re-bala41288-59bvbg-20210116t191821029z
categoryhive-167922
json_metadata{"app":"beerlover/2.0"}
created2021-01-16 19:18:21
last_update2021-01-16 19:18:21
depth2
children0
last_payout2021-01-23 19:18:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length523
author_reputation25,764,988,873,156
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,406,433
net_rshares60,146,567,040
author_curate_reward""
vote details (1)
@gillianpearce ·
$0.04
Me too! Might be handy since I'm in the process of trying to get some records together for the tax man. &#128522;

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@gillianpearce/re-nathanmars-6kv6ry)
👍  ,
properties (23)
authorgillianpearce
permlinkre-nathanmars-6kv6ry
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@gillianpearce/re-nathanmars-6kv6ry"}
created2021-01-16 14:51:09
last_update2021-01-16 14:51:09
depth2
children1
last_payout2021-01-23 14:51:09
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length215
author_reputation59,802,144,649,255
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,402,855
net_rshares314,898,136,751
author_curate_reward""
vote details (2)
@nathanmars ·
Good luck dear. 

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@nathanmars/re-gillianpearce-5dsk7j)
properties (22)
authornathanmars
permlinkre-gillianpearce-5dsk7j
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@nathanmars/re-gillianpearce-5dsk7j"}
created2021-01-16 20:35:42
last_update2021-01-16 20:35:42
depth3
children0
last_payout2021-01-23 20:35:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation336,354,946,115,368
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,407,472
net_rshares0
@pixresteemer ·
<center>![pixresteemer_incognito_angel_mini.png](https://files.peakd.com/file/peakd-hive/pixresteemer/8h7BBw1w-pixresteemer_incognito_angel_mini.png)</center><center>Bang, I did it again... I just rehived your post!</center><center>Week 40 of my [contest](/hive-179017/@pixresteemer/the-re-hive-contest-results-week-39-and-start-week-40) just started...you can now check the winners of the previous week!</center><center><sub>9</sub></center>
properties (22)
authorpixresteemer
permlink20210116t130042048z
categoryhive-167922
json_metadata{"tags":["pixresteemer"],"app":"pixresteemer"}
created2021-01-16 13:00:42
last_update2021-01-16 13:00:42
depth1
children0
last_payout2021-01-23 13:00:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length442
author_reputation121,292,643,806,043
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,401,619
net_rshares0
@poshbot ·
https://twitter.com/bala41288/status/1350427053011570691
properties (22)
authorposhbot
permlinkre-sql-script-to-get-2020-data-from-hive-blockchain-20210116t125801z
categoryhive-167922
json_metadata"{"app": "beem/0.24.8"}"
created2021-01-16 12:58:00
last_update2021-01-16 12:58:00
depth1
children0
last_payout2021-01-23 12:58:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation5,554,335,374,496
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,401,594
net_rshares0
@r1s2g3 ·
Thanks bala.
 look like I will like to play with this tool.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@r1s2g3/re-bala41288-ggs6b)
👍  , , , ,
properties (23)
authorr1s2g3
permlinkre-bala41288-ggs6b
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@r1s2g3/re-bala41288-ggs6b"}
created2021-01-16 17:06:27
last_update2021-01-16 17:06:27
depth1
children3
last_payout2021-01-23 17:06:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length152
author_reputation474,160,583,961,607
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,404,538
net_rshares6,711,850,562
author_curate_reward""
vote details (5)
@bala41288 ·
Yeah cool. I think being a backend guy, you will find it very interesting after you start doing some queries. If you need any help do let me know. :) !wine !BEER

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@bala41288/re-r1s2g3-3fnuna)
properties (22)
authorbala41288
permlinkre-r1s2g3-3fnuna
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@bala41288/re-r1s2g3-3fnuna"}
created2021-01-16 19:17:54
last_update2021-01-16 19:17:54
depth2
children1
last_payout2021-01-23 19:17:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length255
author_reputation1,518,985,861,020,528
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,406,424
net_rshares0
@wine.bot ·
<center>
<sup>Cheers, @bala41288 You Successfully Shared <b>0.100 WINE</b> With @r1s2g3.</sup>
<sup>You Earned <b>0.100 WINE</b> As Curation Reward.</sup>
<sup>You Utilized <b>1/3</b> Successful Calls.</sup>

<img src="https://files.peakd.com/file/peakd-hive/theguruasia/0Mg2vSTo-Wine3Greeting.png" alt="wine-greeting">

---
<sup>[WINE Current Market Price](https://hive-engine.com/?p=market&t=WINE) : <b>1.100 HIVE</b></sup>
</center>
properties (22)
authorwine.bot
permlink20210116t191812563z
categoryhive-167922
json_metadata{"tags":["wine","wineyard"],"app":"tan-bot/1.1","format":"markdown"}
created2021-01-16 19:18:12
last_update2021-01-16 19:18:12
depth3
children0
last_payout2021-01-23 19:18:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length436
author_reputation8,398,740,203,917
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,406,431
net_rshares0
@beerlover ·
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p>Hey @r1s2g3, here is a little bit of <code>BEER</code> from @bala41288 for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
properties (22)
authorbeerlover
permlinkre-r1s2g3-re-bala41288-ggs6b-20210116t191857189z
categoryhive-167922
json_metadata{"app":"beerlover/2.0"}
created2021-01-16 19:18:57
last_update2021-01-16 19:18:57
depth2
children0
last_payout2021-01-23 19:18:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length519
author_reputation25,764,988,873,156
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,406,442
net_rshares0
@revisesociology ·
That's very useful thanks!

@tipu curate
👍  , , ,
properties (23)
authorrevisesociology
permlinkre-bala41288-qn1b3o
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-01-16 15:59:48
last_update2021-01-16 15:59:48
depth1
children2
last_payout2021-01-23 15:59:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation2,271,392,209,752,449
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,403,732
net_rshares3,269,778,977
author_curate_reward""
vote details (4)
@bala41288 ·
Thanks for the tips. You are welcome. :)

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@bala41288/re-revisesociology-ytmpt)
properties (22)
authorbala41288
permlinkre-revisesociology-ytmpt
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@bala41288/re-revisesociology-ytmpt"}
created2021-01-16 19:18:24
last_update2021-01-16 19:18:24
depth2
children0
last_payout2021-01-23 19:18:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length142
author_reputation1,518,985,861,020,528
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,406,434
net_rshares0
@tipu ·
<a href="https://tipu.online/hive_curator?revisesociology" target="_blank">Upvoted  &#128076;</a> (Mana: 11/22) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
properties (22)
authortipu
permlinkre-re-bala41288-qn1b3o-20210116t155954z
categoryhive-167922
json_metadata"{"app": "beem/0.24.20"}"
created2021-01-16 15:59:57
last_update2021-01-16 15:59:57
depth2
children0
last_payout2021-01-23 15:59:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length223
author_reputation55,912,306,507,814
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,403,735
net_rshares0
@sanjeevm ·
Do you know about any curation tools that would help me to find good content ? Sometimes back I think, there was one by @curie ?
👍  , , ,
properties (23)
authorsanjeevm
permlinkre-bala41288-qn143o
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-01-16 13:28:36
last_update2021-01-16 13:28:36
depth1
children1
last_payout2021-01-23 13:28:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation689,242,915,624,222
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,401,937
net_rshares3,273,551,180
author_curate_reward""
vote details (4)
@bala41288 ·
Discovering good content is always a challenge because the new post page is not very useful. I use the Curator Picks tab if I use leofinance.io. Otherwise, you will have to rely only on your feed by following people you think to write good content regularly. 

Yeah, I also remember there used to be one by @curie. Now after the communities got introduced, each community now have their own methods to discover good contents. 

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@bala41288/re-sanjeevm-6ymcc7)
properties (22)
authorbala41288
permlinkre-sanjeevm-6ymcc7
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@bala41288/re-sanjeevm-6ymcc7"}
created2021-01-16 19:25:00
last_update2021-01-16 19:25:00
depth2
children0
last_payout2021-01-23 19:25:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length522
author_reputation1,518,985,861,020,528
root_title"SQL Script to get 2020 data from Hive Blockchain"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,406,512
net_rshares0