第一次使用STEEMSQL查询谷哥点名数据 by oflyhigh

View this thread on steempeak.com
· @oflyhigh ·
$291.37
第一次使用STEEMSQL查询谷哥点名数据
![](https://steemitimages.com/DQmYLCqyew8mnT9ZUWRtvuVfmQbFC2uTnqP7V1osNaYsANc/image.png)

首先感谢 @arcange 提供 SteemSQL服务,SteemSQL是一个包含STEEM区块链数据的公共MS-SQL数据库。

First thanks @arcange for providing SteemSQL services, SteemSQL is a public MS-SQL database with all the blockchain data in it.

----

其实SteemSQL上线之初我马上试用过,但是因为当时第一版只包含一些区块链的transaction数据,用起来还有诸多不便,所以后来SteemData一上线,我就转移战场了,尽管我从来未接触过MongoDB。之后,SteemData一直能满足我的需求,所以就懒得转战回来,但是我依然默默关注这个项目,看着它经过十多次升级变得越来越好,也看着很多STEEMIT的朋友开始使用这个数据库。

今天 @jubi 和我说使用SteemSQL 查询中文标题遇到一些困难,用` WHERE title like '%第一次%'`作为查询条件,查询不到相关数据,但是用英文则可以查询,我答应帮他看看。话说最近他在中文区举办两期***谷哥点名***活动,人气火爆,而***第一次***就是第二期活动的主题。估计太火爆,参与人数众多,单纯地靠人工看帖和整理有些辛苦,于是他想着用程序把整理帖子自动化吧。大家都在成长,这非常好。说到SteemSQL最近,中文区的很多朋友都在用,比如 @ace108, 以及 @joythewanderer, 他们还出过一些向导贴,大家感兴趣可以去翻一翻。

又扯远了,言归正传

# 安装pymssql

我懒得去下桌面软件,还是直接用Python吧
Python下可以使用pyodbc 以及 pymssql啥的,我选择的是pymssql

直接在命令行下直接安装指令
`pip3 install pymssql`

嘎,报一大堆错误, 其它啥的都不认识,我关注的大概三句
>Running setup.py bdist_wheel for pymssql ... error
>   setup.py: Not using bundled FreeTDS
>_mssql.c:266:22: fatal error: sqlfront.h: No such file or directory

去官网查了一下
http://pymssql.org/en/stable/building_and_developing.html
有这样一句
>FreeTDS >= 0.91 including development files. Please research your OS usual software distribution channels, e.g, freetds-dev or freetds-devel packages.

缺啥补啥
`sudo apt-get install freetds-dev`
`pip3 install pymssql`

成功!

# 执行

SteemSQL 官网地址: http://steemsql.com/
但是很遗憾上边的链接信息不全,没有Database的信息
或许连上之后,就直接可以查出来,不过我在SteemSQL发布的帖子中找到了连接信息
>Server: sql.steemsql.com
User: steemit
Password: steemit
Database name: DBSteem

`import pymssql`
`conn = pymssql.connect(host ="sql.steemsql.com",database ="DBSteem",user="steemit",password="steemit")`
在Python里用这个直接连上了,很好。

试着查了一下
`cur = conn.cursor()`
`cur.execute("SELECT title FROM Comments WHERE author= 'oflyhigh' and title like '%区块链%'")`

因为我昨天刚写了一篇文章,
[使用PHP查询STEEM区块链 / Using PHP to query the STEEM blockchain](https://steemit.com/cn/@oflyhigh/php-steem-using-php-to-query-the-steem-blockchain)

为啥就查不到呢?

然后换个关键词
`cur.execute("SELECT title FROM Comments WHERE author= 'oflyhigh' and title like '%PHP%'")`
>('How  to install Apache、MYSQL、PHP5 and run a Wordpress website on BananaPi',), ('拖了很久的事情终于完成了,将PHP 5.4 升级到 PHP 5.6',), ('使用PHP查询STEEM区块链 / Using PHP to query the STEEM blockchain',)

查出来的文章包含我的最新文章

# 排查

那么是哪里有问题导致的呢?
我第一个直觉是编码问题

然后,我把链接改成
`conn = pymssql.connect(host ="sql.steemsql.com",database ="DBSteem",user="steemit",password="steemit", charset="utf8")`
结果依旧

又去把FreeTDS的配置文件中加上字符集设置
`sudo find / -name freetds.conf`
`sudo vi /etc/freetds/freetds.conf`
`sudo vi /usr/share/freetds/freetds.conf`
通通加上:
`client charset = UTF-8`
结果依旧

尽管我觉得没必要,但是,又在Python文件中加上
`#-*- coding: utf-8 -*-`
结果依旧

从查出的结果能正常显示来看,数据应该是按UTF-8存储的,那问题出在哪里呢?三把板斧用完了,我的找新招数了。

研究半天,发现个新玩意,就是***在查询内容前加个N***
详情见
https://docs.microsoft.com/en-us/sql/t-sql/data-types/nchar-and-nvarchar-transact-sql
>Prefix Unicode character string constants with the letter N. Without the N prefix, the string is converted to the default code page of the database. This default code page may not recognize certain characters.

把我的查询改成:
`cur.execute("SELECT title FROM Comments WHERE author= 'oflyhigh' and title like N'%区块链%'")`

查询结果如下:
>我也曾经文青过,18年前写的小诗 《花儿》,学laoyao,咱也放到区块链上
使用PHP查询STEEM区块链 / Using PHP to query the STEEM blockchain
珍惜羽毛 / STEEM区块链忠实的记录你的操作 / 获得共同操作账户的真实操作者
YY 一个基于STEEM区块链的聊天工具
STEEM区块链忠实的记录你的言行&操作

终于可行了

# 再查谷歌点名贴

现在在回头查参加谷歌点名的第二次活动的帖子,主题为`第一次`

`cur.execute("SELECT title,created FROM Comments WHERE title like N'%第一次%' and created > '2017/08/01' order by created")`
`rows = cur.fetchall()`
`for row in rows: print("{}\t{}".format(row[0], row[1]))`

结果如下:

>Magic Clay 你第一次用黏土做了什么呢?   2017-08-01 14:13:45
第一次花費從steemit賺到的收益 ! The first time I get the 'real' money from steemit!     2017-08-02 06:11:21
第一次与你们的对话,my first conversation with y'all .  2017-08-03 18:32:51
第一次在steemit cn发文 感谢steemit让我能接触Bitcoin     2017-08-04 17:09:18
第一次人体解剖课上的惊悚事件    2017-08-07 11:30:48
第一次 - 離鄉別井 | “谷哥点名”活动      2017-08-09 07:10:30
相约大美新疆,第一次在第13届全国冬运会现场  Meet the beauty of Xinjiang,first time in China national winter games        2017-08-09 08:31:15
My first encounter with steemit/我与steemit的第一次邂逅 | 谷歌点名      2017-08-09 10:15:33
我人生的N种第一次       2017-08-09 10:31:48
第一次认识这个世界      2017-08-09 10:52:12
第一次 - 英國行山篇 "谷歌点名"活動 Hiking South Downs Way England       2017-08-09 11:00:00
【参加谷哥点名】我在Steemit的第一次发帖 2017-08-09 13:07:39
第一次离开熟悉的地方外出闯荡    2017-08-09 14:12:33
成就人生的第一次        2017-08-09 14:26:54
第一次 // First Time    2017-08-09 17:11:42
人生第一次——不仅有酸甜苦辣,更有悲欢离合        2017-08-09 18:12:18
第一次 - The First Time (Chinese content only but feel free to comment in English if you understsand) - (by @ace108)    2017-08-10 00:34:03
第一次,        细看妈妈的皱纹| “谷哥点名”活动  2017-08-10 01:11:24
爱上第一次--First Exploration   2017-08-10 01:22:15
如何看待你人生中的第一次?      2017-08-10 01:24:48
?? 老道茶館 ??-請上坐,喝杯茶,說點事;今日話題-第一次 (跨域合作:茶館X谷哥点名) ??  LAODR Tea House  ??  170810   2017-08-10 02:06:03
#隨筆2 第一次 | 谷哥点名        2017-08-10 03:55:33
第一次在星级大酒店吃饭  2017-08-10 04:09:12
第一次绝恋--最后的初恋  The first but also last love.   2017-08-10 04:37:30
第一次品味人生百态 My First Time - Ups and Downs in Life        2017-08-10 05:10:51
第一次 ── 我和我的友生  2017-08-10 05:14:57
第一次拿到在steemit上写作的钱   2017-08-10 05:44:24
领导,今天是我第一次喝酒,可不可以。。。        2017-08-10 06:52:42
第一次去博物馆之中国古代的酒具 The ancient wine cups of the Chinese history     2017-08-10 11:40:54
第一次去油菜花地里玩,种下了心灵里的树  2017-08-10 13:56:00
My first and long leave from my hometown // 第一次離鄉別井      2017-08-10 18:45:03
The  first time i made my rose steamed buns   第一次做玫瑰花馒头!      2017-08-10 21:50:18
第一次 — 住在大学宿舍经历 / 谷哥点名活动 | My university life, my first time living in a university hostel      2017-08-10 23:03:06
第一次 - 在第一次家族旅行 - 台中 (內有家族旅行的心得)| The first time - My first family trip - Tai Chung       2017-08-11 01:16:42
很多第一次的第一次 | "谷哥点名" 2017-08-11 01:30:00
第一次“体验”做父母的感觉 / The First Time for Being a "Parent" | 谷歌点名       2017-08-11 04:10:27
第一次来华文区时的情景与华文区如何发展  2017-08-11 06:23:21
第一次注册域名  2017-08-11 08:18:54
第一次,科學研究的第一次/ “谷哥点名”活动 The First time: The Tirst Time for Scientific Research 2017-08-11 09:15:57
第一次去海边 —— “温良恭俭让”的北威尔士海滨小镇兰迪德诺  2017-08-11 09:28:42
第二期“谷哥点名”活動: 第一次 離鄉別井  2017-08-11 09:36:03
我的第一次的虛擬人生    2017-08-11 10:22:18
一天之内的两个第一次    2017-08-11 10:37:51

总算没辜负 @jubi 小友的信任

# 补充

@jubi 用另外一种方法
`WHERE contains(title, '第一次')`
可以查出部分数据
我搜索了一下,contains是基于全文索引进行查询
但结果可能受系统分词方法的影响导致不全

当然,也可能是我不会使用的缘故 😭

----

也加俩***第一次***关键字参赛,重在参与
另外,万一中奖呢,哈哈哈
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 268 others
properties (23)
post_id9,854,863
authoroflyhigh
permlinksteemsql
categorycn
json_metadata"{"format": "markdown", "links": ["http://pymssql.org/en/stable/building_and_developing.html", "http://steemsql.com/", "https://steemit.com/cn/@oflyhigh/php-steem-using-php-to-query-the-steem-blockchain", "https://docs.microsoft.com/en-us/sql/t-sql/data-types/nchar-and-nvarchar-transact-sql"], "app": "steemit/0.1", "tags": ["cn", "steemsql", "cn-programming", "steemdev", "python"], "users": ["arcange", "jubi", "ace108", "joythewanderer"], "image": ["https://steemitimages.com/DQmYLCqyew8mnT9ZUWRtvuVfmQbFC2uTnqP7V1osNaYsANc/image.png"]}"
created2017-08-11 12:05:33
last_update2017-08-11 12:05:33
depth0
children60
net_rshares84,945,168,565,607
last_payout2017-08-18 12:05:33
cashout_time1969-12-31 23:59:59
total_payout_value243.240 SBD
curator_payout_value48.130 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6,451
author_reputation1,148,153,621,496,884
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (332)
@sylvia1997 ·
很实用哎
properties (22)
post_id9,855,083
authorsylvia1997
permlinkre-oflyhigh-steemsql-20170811t120919271z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:09:15
last_update2017-08-11 12:09:15
depth1
children1
net_rshares0
last_payout2017-08-18 12:09:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length4
author_reputation12,783,997,194,630
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oflyhigh ·
谢谢夸奖
properties (22)
post_id9,855,248
authoroflyhigh
permlinkre-sylvia1997-re-oflyhigh-steemsql-20170811t121150305z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:11:57
last_update2017-08-11 12:11:57
depth2
children0
net_rshares0
last_payout2017-08-18 12:11:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length4
author_reputation1,148,153,621,496,884
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@nicolemoker ·
我看到很多第一次的標題!支持支持!
properties (22)
post_id9,855,097
authornicolemoker
permlinkre-oflyhigh-steemsql-20170811t120928432z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:09:27
last_update2017-08-11 12:09:27
depth1
children3
net_rshares0
last_payout2017-08-18 12:09:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length17
author_reputation38,904,514,499,428
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oflyhigh ·
$0.07
谢谢美女支持
加了好多第一次,哈哈,算作弊不?
👍  
properties (23)
post_id9,855,292
authoroflyhigh
permlinkre-nicolemoker-re-oflyhigh-steemsql-20170811t121225881z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:12:33
last_update2017-08-11 12:12:33
depth2
children2
net_rshares20,431,916,559
last_payout2017-08-18 12:12:33
cashout_time1969-12-31 23:59:59
total_payout_value0.052 SBD
curator_payout_value0.017 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length23
author_reputation1,148,153,621,496,884
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@nicolemoker ·
還是你利害,什麼問題也能解決!
properties (22)
post_id9,855,806
authornicolemoker
permlinkre-oflyhigh-re-nicolemoker-re-oflyhigh-steemsql-20170811t122007581z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:20:09
last_update2017-08-11 12:20:09
depth3
children1
net_rshares0
last_payout2017-08-18 12:20:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length15
author_reputation38,904,514,499,428
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@joythewanderer ·
$0.07
谢谢O哥,我也试着查过中文关键字,但是怎么都出不了数据
原来是少了个N,我试过用%%代替一个%,也试过%%ch,都出不来,谢谢解答疑惑。
👍  
properties (23)
post_id9,855,120
authorjoythewanderer
permlinkre-oflyhigh-steemsql-20170811t120927225z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:09:45
last_update2017-08-11 12:09:45
depth1
children3
net_rshares19,956,755,709
last_payout2017-08-18 12:09:45
cashout_time1969-12-31 23:59:59
total_payout_value0.051 SBD
curator_payout_value0.015 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length68
author_reputation812,830,516,164,099
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@oflyhigh ·
$0.03
其实和字段的存储方式有关
我查了一下title字段存储成nvarchar
加个N前缀,就强制使用UNICODE编码,而不是转换成数据库默认编码

具体细节我也不太懂,好多年没怎么用了
我第一直觉就是编码问题,但是也是试了好几种办法才找到当前方案的
👍  
properties (23)
post_id9,855,614
authoroflyhigh
permlinkre-joythewanderer-re-oflyhigh-steemsql-20170811t121727072z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:17:33
last_update2017-08-11 12:17:33
depth2
children2
net_rshares10,520,051,793
last_payout2017-08-18 12:17:33
cashout_time1969-12-31 23:59:59
total_payout_value0.026 SBD
curator_payout_value0.007 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length123
author_reputation1,148,153,621,496,884
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@joythewanderer ·
👍 真是学习了!中文关键字真是大难题。
properties (22)
post_id9,858,791
authorjoythewanderer
permlinkre-oflyhigh-re-joythewanderer-re-oflyhigh-steemsql-20170811t125552246z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:56:09
last_update2017-08-11 12:56:09
depth3
children1
net_rshares0
last_payout2017-08-18 12:56:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length19
author_reputation812,830,516,164,099
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@jubi ·
这样就方便多了,哈哈,还是o哥厉害。
也可以用来查询别的数据。
properties (22)
post_id9,855,163
authorjubi
permlinkre-oflyhigh-steemsql-20170811t120939411z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:10:24
last_update2017-08-11 12:10:24
depth1
children3
net_rshares0
last_payout2017-08-18 12:10:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length31
author_reputation81,283,051,616,409
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oflyhigh ·
大家都很厉害的啦
我也是现学现卖
properties (22)
post_id9,855,646
authoroflyhigh
permlinkre-jubi-re-oflyhigh-steemsql-20170811t121754364z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:18:00
last_update2017-08-11 12:18:00
depth2
children0
net_rshares0
last_payout2017-08-18 12:18:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length16
author_reputation1,148,153,621,496,884
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@beautifulbella ·
@jubi 。。。o哥帮你那么大的忙是不是应该打赏一下:)

现在您也可以打赏STEEMIT作者
https://steemit.com/cn/@beautifulbella/steemit-now-you-can-tip-steemit-author
properties (22)
post_id9,857,304
authorbeautifulbella
permlinkre-jubi-re-oflyhigh-steemsql-20170811t123825403z
categorycn
json_metadata"{"app": "steemit/0.1", "users": ["jubi"], "links": ["https://steemit.com/cn/@beautifulbella/steemit-now-you-can-tip-steemit-author"], "tags": ["cn"]}"
created2017-08-11 12:38:45
last_update2017-08-11 12:38:45
depth2
children1
net_rshares0
last_payout2017-08-18 12:38:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length126
author_reputation1,876,434,171,956
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@jubi ·
得先去研究下你发的这个打赏机器人先。
👍  
properties (23)
post_id9,857,693
authorjubi
permlinkre-beautifulbella-re-jubi-re-oflyhigh-steemsql-20170811t124240704z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:43:24
last_update2017-08-11 12:43:24
depth3
children0
net_rshares4,719,142,056
last_payout2017-08-18 12:43:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length18
author_reputation81,283,051,616,409
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@good-joinned ·
Your voting will force your voice to give me strength. thanks.
properties (22)
post_id9,855,639
authorgood-joinned
permlinkre-oflyhigh-2017811t191750478z
categorycn
json_metadata"{"app": "esteem/1.4.5", "format": "markdown+html", "community": "esteem", "tags": "cn"}"
created2017-08-11 12:17:54
last_update2017-08-11 12:17:54
depth1
children0
net_rshares0
last_payout2017-08-18 12:17:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length62
author_reputation724,435,960,074
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@completelyanon ·
Thank you for sharing with us! I hope you enjoy the upvote!
properties (22)
post_id9,855,851
authorcompletelyanon
permlinkcompletelyanon-re-oflyhighsteemsql
categorycn
json_metadata{}
created2017-08-11 12:20:42
last_update2017-08-11 12:20:42
depth1
children0
net_rshares0
last_payout2017-08-18 12:20:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length59
author_reputation3,202,989,799,343
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@justyy ·
赞,收藏先。
properties (22)
post_id9,856,156
authorjustyy
permlinkre-oflyhigh-steemsql-20170811t122456989z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:24:57
last_update2017-08-11 12:24:57
depth1
children1
net_rshares0
last_payout2017-08-18 12:24:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6
author_reputation2,057,469,156,047,835
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oflyhigh ·
谢谢
properties (22)
post_id9,856,712
authoroflyhigh
permlinkre-justyy-re-oflyhigh-steemsql-20170811t123141542z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:31:48
last_update2017-08-11 12:31:48
depth2
children0
net_rshares0
last_payout2017-08-18 12:31:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length2
author_reputation1,148,153,621,496,884
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@travelgirl ·
O 哥哥 這個很實用啊 👍
properties (22)
post_id9,856,388
authortravelgirl
permlinkre-oflyhigh-steemsql-20170811t122751451z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:27:54
last_update2017-08-11 12:27:54
depth1
children1
net_rshares0
last_payout2017-08-18 12:27:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length13
author_reputation653,966,580,970,956
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oflyhigh ·
谢谢夸奖
properties (22)
post_id9,856,749
authoroflyhigh
permlinkre-travelgirl-re-oflyhigh-steemsql-20170811t123205238z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:32:12
last_update2017-08-11 12:32:12
depth2
children0
net_rshares0
last_payout2017-08-18 12:32:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length4
author_reputation1,148,153,621,496,884
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@zhijun ·
万一中奖了呢……
properties (22)
post_id9,856,655
authorzhijun
permlinkre-oflyhigh-steemsql-20170811t123110409z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:31:12
last_update2017-08-11 12:31:12
depth1
children1
net_rshares0
last_payout2017-08-18 12:31:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length8
author_reputation4,501,252,062,061
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oflyhigh ·
😀
properties (22)
post_id9,857,347
authoroflyhigh
permlinkre-zhijun-re-oflyhigh-steemsql-20170811t123907663z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:39:12
last_update2017-08-11 12:39:12
depth2
children0
net_rshares0
last_payout2017-08-18 12:39:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1
author_reputation1,148,153,621,496,884
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@lemooljiang ·
O婶威武啊
properties (22)
post_id9,856,720
authorlemooljiang
permlinkre-oflyhigh-steemsql-20170811t123140157z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:31:51
last_update2017-08-11 12:31:51
depth1
children1
net_rshares0
last_payout2017-08-18 12:31:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length5
author_reputation263,700,595,848,611
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oflyhigh ·
诗王威武!
properties (22)
post_id9,857,377
authoroflyhigh
permlinkre-lemooljiang-re-oflyhigh-steemsql-20170811t123928590z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:39:33
last_update2017-08-11 12:39:33
depth2
children0
net_rshares0
last_payout2017-08-18 12:39:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length5
author_reputation1,148,153,621,496,884
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@aaronli ·
嘩嘩很強!我的第一次現在排18,看來沒有机会得獎了🙈
會否越新的文章會較容易排在前面?
properties (22)
post_id9,857,217
authoraaronli
permlinkre-oflyhigh-steemsql-20170811t123734240z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:37:33
last_update2017-08-11 12:37:33
depth1
children4
net_rshares0
last_payout2017-08-18 12:37:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length43
author_reputation226,174,919,515,327
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oflyhigh ·
我文章中的排序吗?是按时间排序的
properties (22)
post_id9,857,407
authoroflyhigh
permlinkre-aaronli-re-oflyhigh-steemsql-20170811t123949387z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:39:54
last_update2017-08-11 12:39:54
depth2
children3
net_rshares0
last_payout2017-08-18 12:39:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length16
author_reputation1,148,153,621,496,884
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@aaronli ·
那即是我还有机會中獎了🙈🙈🙈🙈
properties (22)
post_id9,857,621
authoraaronli
permlinkre-oflyhigh-re-aaronli-re-oflyhigh-steemsql-20170811t124226794z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:42:27
last_update2017-08-11 12:42:27
depth3
children2
net_rshares0
last_payout2017-08-18 12:42:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length15
author_reputation226,174,919,515,327
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@krischy ·
我也今天剛剛参加了,沒有看到我的 lol'
properties (22)
post_id9,857,665
authorkrischy
permlinkre-oflyhigh-steemsql-20170811t124303375z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:43:03
last_update2017-08-11 12:43:03
depth1
children6
net_rshares0
last_payout2017-08-18 12:43:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length21
author_reputation35,663,357,100,120
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oflyhigh ·
$0.07
啊
第二期“谷哥点名”活動: 第一次 離鄉別井 2017-08-11 09:36:03
@krischy

冤枉好人,该当何罪? 😭
👍  
properties (23)
post_id9,859,670
authoroflyhigh
permlinkre-krischy-re-oflyhigh-steemsql-20170811t130707173z
categorycn
json_metadata"{"app": "steemit/0.1", "users": ["krischy"], "tags": ["cn"]}"
created2017-08-11 13:07:12
last_update2017-08-11 13:07:12
depth2
children5
net_rshares20,431,916,559
last_payout2017-08-18 13:07:12
cashout_time1969-12-31 23:59:59
total_payout_value0.052 SBD
curator_payout_value0.017 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length66
author_reputation1,148,153,621,496,884
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@krischy ·
是小妹沒看清楚 , 我來跪玻璃 😭 😭
properties (22)
post_id9,859,978
authorkrischy
permlinkre-oflyhigh-re-krischy-re-oflyhigh-steemsql-20170811t131115177z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 13:11:15
last_update2017-08-11 13:11:15
depth3
children4
net_rshares0
last_payout2017-08-18 13:11:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length19
author_reputation35,663,357,100,120
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@cryptousage ·
Thank you for sharing.
properties (22)
post_id9,857,772
authorcryptousage
permlinkre-oflyhigh-steemsql-20170811t124427555z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:44:27
last_update2017-08-11 12:44:27
depth1
children0
net_rshares0
last_payout2017-08-18 12:44:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length22
author_reputation38,508,407,201
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@firzee0717 ·
Hii @oflyhigh successful greetings
Nice to meet you

#introduce my name @ firzee0717,
I come from #aceh Sumatra.
Welcome to #steemit for those of you who want to succeed here, I also want the same thing.
I'm also new here #Steem is still a lot to learn from seniors.

Nice to meet you all !!
Please help to promote me
And Please for others follow and Upvote My account @ firzee0717
I love you all
properties (22)
post_id9,857,848
authorfirzee0717
permlinkre-oflyhigh-steemsql-20170811t124516254z
categorycn
json_metadata"{"app": "steemit/0.1", "users": ["oflyhigh"], "tags": ["introduce", "aceh", "steemit", "steem", "cn"]}"
created2017-08-11 12:45:15
last_update2017-08-11 12:45:15
depth1
children0
net_rshares0
last_payout2017-08-18 12:45:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length396
author_reputation2,435,940,447
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@x-p ·
$0.06
English translation please?
👍  , ,
properties (23)
post_id9,858,982
authorx-p
permlinkre-oflyhigh-steemsql-20170811t125827394z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 12:58:33
last_update2017-08-11 12:58:33
depth1
children1
net_rshares16,496,068,655
last_payout2017-08-18 12:58:33
cashout_time1969-12-31 23:59:59
total_payout_value0.053 SBD
curator_payout_value0.002 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length27
author_reputation344,085,733,826
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@techtek ·
Yes please :)
👍  
properties (23)
post_id9,873,755
authortechtek
permlinkre-x-p-re-oflyhigh-steemsql-20170811t155109672z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 15:51:27
last_update2017-08-11 15:51:27
depth2
children0
net_rshares1,321,892,026
last_payout2017-08-18 15:51:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length13
author_reputation27,261,864,541,956
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@simonsayz ·
Thanks, very informative, I am following you now @oflyhigh
properties (22)
post_id9,861,232
authorsimonsayz
permlinkre-oflyhigh-steemsql-20170811t132724257z
categorycn
json_metadata"{"app": "steemit/0.1", "users": ["oflyhigh"], "tags": ["cn"]}"
created2017-08-11 13:27:24
last_update2017-08-11 13:27:24
depth1
children0
net_rshares0
last_payout2017-08-18 13:27:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length58
author_reputation974,740,225,556
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ace108 ·
$2.03
建议一下你加个 WAIT (NOLOCK) 比如:
<pre><code>SELECT 
   author, title,created 
FROM Comments <b>WAIT (NOLOCK) </b> 
WHERE title like N'%第一次%' 
  and created > '2017/08/01' 
order by created</code></pre>
也是昨天找furion问steemsql缺数据的问题他告诉我的。
这样不会把数据库锁住。我用Oracle没这必要但MS SQL Server 好像这比较好。
呵呵。。。我也来看个究竟。
哦,我在中间。:-)
![](https://steemitimages.com/DQmShcpWHSWEPhKWQdXZtPgMD6mF1cHX4vWUfGcSDyk8ETr/image.png)
👍  ,
properties (23)
post_id9,862,286
authorace108
permlinkre-oflyhigh-steemsql-20170811t134055946z
categorycn
json_metadata"{"app": "steemit/0.1", "image": ["https://steemitimages.com/DQmShcpWHSWEPhKWQdXZtPgMD6mF1cHX4vWUfGcSDyk8ETr/image.png"], "tags": ["cn"]}"
created2017-08-11 13:41:00
last_update2017-08-11 13:41:00
depth1
children4
net_rshares594,594,474,077
last_payout2017-08-18 13:41:00
cashout_time1969-12-31 23:59:59
total_payout_value1.851 SBD
curator_payout_value0.177 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length387
author_reputation585,838,322,788,458
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@oflyhigh ·
感谢专家指点
MSSQL我很少用,除了以前做项目的时候接触过一两次
以后和你们多学习

另外, steemsql少数据你找furion干啥,他是steemdata的 😀
properties (22)
post_id9,863,211
authoroflyhigh
permlinkre-ace108-re-oflyhigh-steemsql-20170811t135123710z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 13:51:30
last_update2017-08-11 13:51:30
depth2
children1
net_rshares0
last_payout2017-08-18 13:51:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length84
author_reputation1,148,153,621,496,884
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ace108 ·
哦错了,是 arcange. 我也找 furion 问sbds.那里数据也好像过时。
MSSQL 我也刚开始用。不是专家。 :-)
Oracle 的就用过很多年了。
properties (22)
post_id9,863,967
authorace108
permlinkre-oflyhigh-re-ace108-re-oflyhigh-steemsql-20170811t135845907z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 13:58:45
last_update2017-08-11 13:58:45
depth3
children0
net_rshares0
last_payout2017-08-18 13:58:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length82
author_reputation585,838,322,788,458
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tvb ·
WAIT (NOLOCK)  顺便查了一下 NOLOCK 懂了个大概,感谢大神!
properties (22)
post_id10,056,136
authortvb
permlinkre-ace108-re-oflyhigh-steemsql-20170813t213808884z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-13 21:38:15
last_update2017-08-13 21:38:15
depth2
children1
net_rshares0
last_payout2017-08-20 21:38:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length40
author_reputation35,846,309,024,528
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ace108 ·
别客气。我非大神。 也是最近得指点上网找了下才知。 :-)
properties (22)
post_id10,059,188
authorace108
permlinkre-tvb-re-ace108-re-oflyhigh-steemsql-20170813t223250129z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-13 22:32:54
last_update2017-08-13 22:32:54
depth3
children0
net_rshares0
last_payout2017-08-20 22:32:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length29
author_reputation585,838,322,788,458
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@munazir ·
$0.33
hi @oflyhigh...... A very useful post for all steemit users around the world, hoping those who read it can post every piece of their writing beautifully by using such a good basic procedure, organized and nice to read, how not to. Using the clues you share can give birth to works that look very unusual.
Continue to work @oflyhigh good luck continued and many gave birth to the benefits for many people
👍  
properties (23)
post_id9,862,422
authormunazir
permlinkre-oflyhigh-2017811t20423037z
categorycn
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "cn"}"
created2017-08-11 13:42:36
last_update2017-08-11 13:42:36
depth1
children0
net_rshares101,828,369,092
last_payout2017-08-18 13:42:36
cashout_time1969-12-31 23:59:59
total_payout_value0.329 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length403
author_reputation613,448,032,334
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@gr3g0r ·
Support me and enter here https://steemit.com/help/@gr3g0r/hi-i-m-from-venezuela your collaboration is important @gr3g0r Follow Me!
properties (22)
post_id9,863,431
authorgr3g0r
permlinkre-oflyhigh-steemsql-20170811t135339766z
categorycn
json_metadata"{"app": "steemit/0.1", "users": ["gr3g0r"], "links": ["https://steemit.com/help/@gr3g0r/hi-i-m-from-venezuela"], "tags": ["cn"]}"
created2017-08-11 13:53:39
last_update2017-08-11 13:53:39
depth1
children0
net_rshares0
last_payout2017-08-18 13:53:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length131
author_reputation69,716,139,996
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@theoccultcorner ·
I cant understand a word what this post says but it looks cool.
👍  
properties (23)
post_id9,864,404
authortheoccultcorner
permlinkre-oflyhigh-2017811t735871z
categorycn
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "cn"}"
created2017-08-11 14:03:12
last_update2017-08-11 14:03:12
depth1
children0
net_rshares0
last_payout2017-08-18 14:03:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length63
author_reputation4,136,820,402,388
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@fapfap ·
This language is so sexy...

http://i0.kym-cdn.com/entries/icons/original/000/002/276/fap-meme.jpg

Fap fap fap fap fap... Fap fap. Fap? Fap fap fap!
properties (22)
post_id9,870,075
authorfapfap
permlinkre-oflyhigh-steemsql-20170811t150625770z
categorycn
json_metadata"{"app": "steemit/0.1", "image": ["http://i0.kym-cdn.com/entries/icons/original/000/002/276/fap-meme.jpg"], "tags": ["cn"]}"
created2017-08-11 15:06:24
last_update2017-08-11 15:06:24
depth1
children0
net_rshares0
last_payout2017-08-18 15:06:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length149
author_reputation2,486,311,596,331
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@imamaii ·
who likes my pet :)
<div style="position: fixed; bottom: 0px; left: 10px;width:125px;height:160px;"><a href="http://catatan-lingga.blogspot.com/2014/05/20-widget-animasi-yang-lucu-dan-keren.html" target="_blank"><img border="0" src="http://content.sweetim.com/sim/cpie/emoticons/000203A0.gif" title="Click to get more." /></a><center><a href="http://catatan-lingga.blogspot.com/2014/05/20-widget-animasi-yang-lucu-dan-keren.html" target="_blank"></a></center></div>
👍  
👎  ,
properties (23)
post_id9,889,435
authorimamaii
permlinkre-oflyhigh-steemsql-20170811t191924849z
categorycn
json_metadata"{"app": "steemit/0.1", "links": ["http://catatan-lingga.blogspot.com/2014/05/20-widget-animasi-yang-lucu-dan-keren.html"], "image": ["http://content.sweetim.com/sim/cpie/emoticons/000203A0.gif"], "tags": ["cn"]}"
created2017-08-11 19:19:48
last_update2017-08-11 19:19:48
depth1
children0
net_rshares-1,015,402,897,182
last_payout2017-08-18 19:19:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length465
author_reputation2,332,264,370,871
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@justsmile ·
follow me please
properties (22)
post_id9,889,919
authorjustsmile
permlinkre-oflyhigh-steemsql-20170811t192615628z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 19:26:18
last_update2017-08-11 19:26:18
depth1
children0
net_rshares0
last_payout2017-08-18 19:26:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length16
author_reputation-36,869,450,645
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@daniham ·
Tanpa uang semua jadi kacau,,  bila uang banyak saudara pun jadi rame
properties (22)
post_id9,890,071
authordaniham
permlinkre-oflyhigh-2017812t22824632z
categorycn
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "cn"}"
created2017-08-11 19:28:30
last_update2017-08-11 19:28:30
depth1
children0
net_rshares0
last_payout2017-08-18 19:28:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length69
author_reputation645,654,229,034
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@biuiam ·
看到我自己的文 = 已經參加了,可以放心去睡了 XD
雖然看不明白內容 (逃)
properties (22)
post_id9,890,167
authorbiuiam
permlinkre-oflyhigh-steemsql-20170811t192957149z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-11 19:29:57
last_update2017-08-11 19:29:57
depth1
children0
net_rshares0
last_payout2017-08-18 19:29:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length39
author_reputation71,889,699,236,580
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@sharoon ·
Really post is very nice and impressive but i don,t know this language
properties (22)
post_id9,916,502
authorsharoon
permlinkre-oflyhigh-steemsql-20170812t034448884z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-12 03:44:45
last_update2017-08-12 03:44:45
depth1
children0
net_rshares0
last_payout2017-08-19 03:44:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length70
author_reputation-330,285,029,183
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@shasol ·
I wish I could understand chinese. I am learning chinese through google translator. New language is always good.
Upvoted
properties (22)
post_id9,943,184
authorshasol
permlinkre-oflyhigh-steemsql-20170812t122923914z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-12 12:29:42
last_update2017-08-12 12:29:42
depth1
children0
net_rshares0
last_payout2017-08-19 12:29:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length120
author_reputation26,709,555,875
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@arcange ·
Congratulations @oflyhigh!
Your post was mentioned in the [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170811) in the following categories:

* Upvotes - Ranked 10 with 310 upvotes
* Pending payout - Ranked 5 with $ 331,57
properties (22)
post_id9,951,486
authorarcange
permlinkre-steemsql-20170811t163414000z
categorycn
json_metadata{}
created2017-08-12 14:33:03
last_update2017-08-12 14:33:03
depth1
children0
net_rshares0
last_payout2017-08-19 14:33:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length249
author_reputation231,443,210,169,699
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@sweeti ·
哇!谢谢分享^^值得收藏
properties (22)
post_id9,954,042
authorsweeti
permlinkre-oflyhigh-steemsql-20170812t150922523z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-12 15:09:45
last_update2017-08-12 15:09:45
depth1
children0
net_rshares0
last_payout2017-08-19 15:09:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length12
author_reputation8,555,043,501,451
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tvb · (edited)
关键知识点:like N'%区块链%'"
properties (22)
post_id10,055,846
authortvb
permlinkre-oflyhigh-steemsql-20170813t213307834z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-08-13 21:33:12
last_update2017-08-13 21:33:54
depth1
children0
net_rshares0
last_payout2017-08-20 21:33:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length20
author_reputation35,846,309,024,528
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@eduter ·
顶一下,现在正被这个中文字符编码显示问题困扰中。@justyy 把我引过来的。
properties (22)
post_id17,426,150
authoreduter
permlinkre-oflyhigh-steemsql-20171111t194445917z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2017-11-11 19:44:09
last_update2017-11-11 19:44:09
depth1
children0
net_rshares0
last_payout2017-11-18 19:44:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length39
author_reputation3,336,824,252,282
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000