SteemSQL Tutorial – I have spent 800 SBD (7000+ USD) buying votes!


money-calculator-potato SteemSQL Tutorial - I have spent 800 SBD (7000+ USD) buying votes! mssql sql SteemIt tutorial

money-calculator-potato

I spent around 800 SBD (7000 USD) in buying votes. The following queries the table TxTransfers thanks to @arcange’s STEEMSQL.

1
2
3
4
5
select "from", "to", "memo", (amount)
from TxTransfers (NOLOCK)
where
    "from" = 'justyy' and
    memo like 'http%'   
select "from", "to", "memo", (amount)
from TxTransfers (NOLOCK)
where
    "from" = 'justyy' and
    memo like 'http%'   

This will list all the transfers with memo starting “http”. If we group the results, we know exactly how much have been sent to per vote-buying ID.

1
2
3
4
5
6
7
select "to", sum(amount)
from TxTransfers (NOLOCK)
where
    "from" = 'justyy' and
    memo like 'http%'
group by
    "to"
select "to", sum(amount)
from TxTransfers (NOLOCK)
where
    "from" = 'justyy' and
    memo like 'http%'
group by
    "to"

This is clear and I did spend a lot in this!

txtransfers-buying-upvotes SteemSQL Tutorial - I have spent 800 SBD (7000+ USD) buying votes! mssql sql SteemIt tutorial

txtransfers-buying-upvotes

Some data should have been excluded from the STEEMSQL resutls, for example, the SBD sent to @oflyhigh, @travelgirl, @wilkinshui and @yuxi were not for buying votes. The biggest service I use is @minnowbooster which I have spent 686.7 SBD, Gosh!

Why buy votes?

My reasons are:

  • Increase your Reputation faster
  • Promote your posts
  • SEO, the posts worth more than 10 USD have do-follow links

This might still be useful and reasonable to use these services. What do you think?

You may also like: SteemSQL 教程 – 我花了800多 SBD (7000多美元)买赞

STEEM SQL Tutorial

–EOF (The Ultimate Computing & Technology Blog) —

GD Star Rating
a WordPress rating system
617 words
Last Post: How to Localize WordPress Blog?
Next Post: Being part of Utopian Moderating Team is Great ! (Intro Post)

The Permanent URL is: SteemSQL Tutorial – I have spent 800 SBD (7000+ USD) buying votes!

Leave a Reply