create account

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

View this thread on: hive.blogpeakd.comecency.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)
authoroflyhigh
permlinksteemsql
categorycn
json_metadata{"tags":["cn","steemsql","cn-programming","steemdev","python"],"users":["arcange","jubi","ace108","joythewanderer"],"image":["https://steemitimages.com/DQmYLCqyew8mnT9ZUWRtvuVfmQbFC2uTnqP7V1osNaYsANc/image.png"],"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","format":"markdown"}
created2017-08-11 12:05:33
last_update2017-08-11 12:05:33
depth0
children60
last_payout2017-08-18 12:05:33
cashout_time1969-12-31 23:59:59
total_payout_value243.240 HBD
curator_payout_value48.130 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,451
author_reputation6,390,365,246,540,642
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,494,420
net_rshares84,945,168,565,607
author_curate_reward""
vote details (332)
@aaronli ·
嘩嘩很強!我的第一次現在排18,看來沒有机会得獎了🙈
會否越新的文章會較容易排在前面?
properties (22)
authoraaronli
permlinkre-oflyhigh-steemsql-20170811t123734240z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:37:33
last_update2017-08-11 12:37:33
depth1
children4
last_payout2017-08-18 12:37:33
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_length43
author_reputation357,949,032,263,366
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,497,097
net_rshares0
@oflyhigh ·
我文章中的排序吗?是按时间排序的
properties (22)
authoroflyhigh
permlinkre-aaronli-re-oflyhigh-steemsql-20170811t123949387z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:39:54
last_update2017-08-11 12:39:54
depth2
children3
last_payout2017-08-18 12:39: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_length16
author_reputation6,390,365,246,540,642
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,497,309
net_rshares0
@aaronli ·
那即是我还有机會中獎了🙈🙈🙈🙈
properties (22)
authoraaronli
permlinkre-oflyhigh-re-aaronli-re-oflyhigh-steemsql-20170811t124226794z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:42:27
last_update2017-08-11 12:42:27
depth3
children2
last_payout2017-08-18 12:42: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_length15
author_reputation357,949,032,263,366
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,497,536
net_rshares0
@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)
authorace108
permlinkre-oflyhigh-steemsql-20170811t134055946z
categorycn
json_metadata{"tags":["cn"],"image":["https://steemitimages.com/DQmShcpWHSWEPhKWQdXZtPgMD6mF1cHX4vWUfGcSDyk8ETr/image.png"],"app":"steemit/0.1"}
created2017-08-11 13:41:00
last_update2017-08-11 13:41:00
depth1
children4
last_payout2017-08-18 13:41:00
cashout_time1969-12-31 23:59:59
total_payout_value1.851 HBD
curator_payout_value0.177 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length387
author_reputation1,232,674,095,028,531
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,502,743
net_rshares594,594,474,077
author_curate_reward""
vote details (2)
@oflyhigh ·
感谢专家指点
MSSQL我很少用,除了以前做项目的时候接触过一两次
以后和你们多学习

另外, steemsql少数据你找furion干啥,他是steemdata的 😀
properties (22)
authoroflyhigh
permlinkre-ace108-re-oflyhigh-steemsql-20170811t135123710z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 13:51:30
last_update2017-08-11 13:51:30
depth2
children1
last_payout2017-08-18 13:51:30
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_length84
author_reputation6,390,365,246,540,642
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,503,789
net_rshares0
@ace108 ·
哦错了,是 arcange. 我也找 furion 问sbds.那里数据也好像过时。
MSSQL 我也刚开始用。不是专家。 :-)
Oracle 的就用过很多年了。
properties (22)
authorace108
permlinkre-oflyhigh-re-ace108-re-oflyhigh-steemsql-20170811t135845907z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 13:58:45
last_update2017-08-11 13:58:45
depth3
children0
last_payout2017-08-18 13:58:45
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_length82
author_reputation1,232,674,095,028,531
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,504,638
net_rshares0
@tvb ·
WAIT (NOLOCK)  顺便查了一下 NOLOCK 懂了个大概,感谢大神!
properties (22)
authortvb
permlinkre-ace108-re-oflyhigh-steemsql-20170813t213808884z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-13 21:38:15
last_update2017-08-13 21:38:15
depth2
children1
last_payout2017-08-20 21:38: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_length40
author_reputation35,399,037,650,048
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,722,844
net_rshares0
@ace108 ·
别客气。我非大神。 也是最近得指点上网找了下才知。 :-)
properties (22)
authorace108
permlinkre-tvb-re-ace108-re-oflyhigh-steemsql-20170813t223250129z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-13 22:32:54
last_update2017-08-13 22:32:54
depth3
children0
last_payout2017-08-20 22:32: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_length29
author_reputation1,232,674,095,028,531
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,726,225
net_rshares0
@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)
authorarcange
permlinkre-steemsql-20170811t163414000z
categorycn
json_metadata""
created2017-08-12 14:33:03
last_update2017-08-12 14:33:03
depth1
children0
last_payout2017-08-19 14:33: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_length249
author_reputation1,148,338,046,623,517
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,603,949
net_rshares0
@biuiam ·
看到我自己的文 = 已經參加了,可以放心去睡了 XD
雖然看不明白內容 (逃)
properties (22)
authorbiuiam
permlinkre-oflyhigh-steemsql-20170811t192957149z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 19:29:57
last_update2017-08-11 19:29:57
depth1
children0
last_payout2017-08-18 19:29: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_length39
author_reputation66,804,947,493,380
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,534,226
net_rshares0
@completelyanon ·
Thank you for sharing with us! I hope you enjoy the upvote!
properties (22)
authorcompletelyanon
permlinkcompletelyanon-re-oflyhighsteemsql
categorycn
json_metadata""
created2017-08-11 12:20:42
last_update2017-08-11 12:20:42
depth1
children0
last_payout2017-08-18 12:20: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_length59
author_reputation3,200,893,877,084
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,495,546
net_rshares0
@cryptousage ·
Thank you for sharing.
properties (22)
authorcryptousage
permlinkre-oflyhigh-steemsql-20170811t124427555z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:44:27
last_update2017-08-11 12:44:27
depth1
children0
last_payout2017-08-18 12:44: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_length22
author_reputation38,479,085,902
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,497,698
net_rshares0
@daniham ·
Tanpa uang semua jadi kacau,,  bila uang banyak saudara pun jadi rame
properties (22)
authordaniham
permlinkre-oflyhigh-2017812t22824632z
categorycn
json_metadata{"tags":"cn","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-11 19:28:30
last_update2017-08-11 19:28:30
depth1
children0
last_payout2017-08-18 19:28:30
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_length69
author_reputation647,056,091,156
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,534,118
net_rshares0
@eduter ·
顶一下,现在正被这个中文字符编码显示问题困扰中。@justyy 把我引过来的。
properties (22)
authoreduter
permlinkre-oflyhigh-steemsql-20171111t194445917z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-11-11 19:44:09
last_update2017-11-11 19:44:09
depth1
children0
last_payout2017-11-18 19:44:09
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_length39
author_reputation3,331,773,298,183
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,083,272
net_rshares0
@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)
authorfapfap
permlinkre-oflyhigh-steemsql-20170811t150625770z
categorycn
json_metadata{"tags":["cn"],"image":["http://i0.kym-cdn.com/entries/icons/original/000/002/276/fap-meme.jpg"],"app":"steemit/0.1"}
created2017-08-11 15:06:24
last_update2017-08-11 15:06:24
depth1
children0
last_payout2017-08-18 15:06: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_length149
author_reputation2,485,400,531,317
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,511,485
net_rshares0
@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)
authorfirzee0717
permlinkre-oflyhigh-steemsql-20170811t124516254z
categorycn
json_metadata{"tags":["introduce","aceh","steemit","steem","cn"],"users":["oflyhigh"],"app":"steemit/0.1"}
created2017-08-11 12:45:15
last_update2017-08-11 12:45:15
depth1
children0
last_payout2017-08-18 12:45: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_length396
author_reputation2,433,904,099
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,497,783
net_rshares0
@good-joinned ·
Your voting will force your voice to give me strength. thanks.
properties (22)
authorgood-joinned
permlinkre-oflyhigh-2017811t191750478z
categorycn
json_metadata{"tags":"cn","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-08-11 12:17:54
last_update2017-08-11 12:17:54
depth1
children0
last_payout2017-08-18 12: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_length62
author_reputation724,509,194,051
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,495,300
net_rshares0
@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)
authorgr3g0r
permlinkre-oflyhigh-steemsql-20170811t135339766z
categorycn
json_metadata{"tags":["cn"],"users":["gr3g0r"],"links":["https://steemit.com/help/@gr3g0r/hi-i-m-from-venezuela"],"app":"steemit/0.1"}
created2017-08-11 13:53:39
last_update2017-08-11 13:53:39
depth1
children0
last_payout2017-08-18 13:53:39
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_length131
author_reputation69,776,732,332
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,504,021
net_rshares0
@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)
authorimamaii
permlinkre-oflyhigh-steemsql-20170811t191924849z
categorycn
json_metadata{"tags":["cn"],"image":["http://content.sweetim.com/sim/cpie/emoticons/000203A0.gif"],"links":["http://catatan-lingga.blogspot.com/2014/05/20-widget-animasi-yang-lucu-dan-keren.html"],"app":"steemit/0.1"}
created2017-08-11 19:19:48
last_update2017-08-11 19:19:48
depth1
children0
last_payout2017-08-18 19:19: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_length465
author_reputation2,334,485,483,401
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,533,414
net_rshares-1,015,402,897,182
author_curate_reward""
vote details (3)
@joythewanderer ·
$0.07
谢谢O哥,我也试着查过中文关键字,但是怎么都出不了数据
原来是少了个N,我试过用%%代替一个%,也试过%%ch,都出不来,谢谢解答疑惑。
👍  
properties (23)
authorjoythewanderer
permlinkre-oflyhigh-steemsql-20170811t120927225z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:09:45
last_update2017-08-11 12:09:45
depth1
children3
last_payout2017-08-18 12:09:45
cashout_time1969-12-31 23:59:59
total_payout_value0.051 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation1,916,082,145,948,706
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,494,706
net_rshares19,956,755,709
author_curate_reward""
vote details (1)
@oflyhigh ·
$0.03
其实和字段的存储方式有关
我查了一下title字段存储成nvarchar
加个N前缀,就强制使用UNICODE编码,而不是转换成数据库默认编码

具体细节我也不太懂,好多年没怎么用了
我第一直觉就是编码问题,但是也是试了好几种办法才找到当前方案的
👍  
properties (23)
authoroflyhigh
permlinkre-joythewanderer-re-oflyhigh-steemsql-20170811t121727072z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:17:33
last_update2017-08-11 12:17:33
depth2
children2
last_payout2017-08-18 12:17:33
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation6,390,365,246,540,642
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,495,271
net_rshares10,520,051,793
author_curate_reward""
vote details (1)
@joythewanderer ·
👍 真是学习了!中文关键字真是大难题。
properties (22)
authorjoythewanderer
permlinkre-oflyhigh-re-joythewanderer-re-oflyhigh-steemsql-20170811t125552246z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:56:09
last_update2017-08-11 12:56:09
depth3
children1
last_payout2017-08-18 12:56:09
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_length19
author_reputation1,916,082,145,948,706
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,498,814
net_rshares0
@jubi ·
这样就方便多了,哈哈,还是o哥厉害。
也可以用来查询别的数据。
properties (22)
authorjubi
permlinkre-oflyhigh-steemsql-20170811t120939411z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:10:24
last_update2017-08-11 12:10:24
depth1
children3
last_payout2017-08-18 12:10: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_length31
author_reputation82,406,494,254,467
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,494,753
net_rshares0
@beautifulbella ·
@jubi 。。。o哥帮你那么大的忙是不是应该打赏一下:)

现在您也可以打赏STEEMIT作者
https://steemit.com/cn/@beautifulbella/steemit-now-you-can-tip-steemit-author
properties (22)
authorbeautifulbella
permlinkre-jubi-re-oflyhigh-steemsql-20170811t123825403z
categorycn
json_metadata{"tags":["cn"],"users":["jubi"],"links":["https://steemit.com/cn/@beautifulbella/steemit-now-you-can-tip-steemit-author"],"app":"steemit/0.1"}
created2017-08-11 12:38:45
last_update2017-08-11 12:38:45
depth2
children1
last_payout2017-08-18 12:38:45
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_length126
author_reputation1,876,932,920,921
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,497,193
net_rshares0
@jubi ·
得先去研究下你发的这个打赏机器人先。
👍  
properties (23)
authorjubi
permlinkre-beautifulbella-re-jubi-re-oflyhigh-steemsql-20170811t124240704z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:43:24
last_update2017-08-11 12:43:24
depth3
children0
last_payout2017-08-18 12:43: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_length18
author_reputation82,406,494,254,467
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,497,612
net_rshares4,719,142,056
author_curate_reward""
vote details (1)
@oflyhigh ·
大家都很厉害的啦
我也是现学现卖
properties (22)
authoroflyhigh
permlinkre-jubi-re-oflyhigh-steemsql-20170811t121754364z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:18:00
last_update2017-08-11 12:18:00
depth2
children0
last_payout2017-08-18 12:18: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_length16
author_reputation6,390,365,246,540,642
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,495,307
net_rshares0
@justsmile ·
follow me please
properties (22)
authorjustsmile
permlinkre-oflyhigh-steemsql-20170811t192615628z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 19:26:18
last_update2017-08-11 19:26:18
depth1
children0
last_payout2017-08-18 19:26:18
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_reputation-36,878,584,079
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,533,949
net_rshares0
@justyy ·
赞,收藏先。
properties (22)
authorjustyy
permlinkre-oflyhigh-steemsql-20170811t122456989z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:24:57
last_update2017-08-11 12:24:57
depth1
children1
last_payout2017-08-18 12:24: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_length6
author_reputation280,616,224,641,976
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,495,929
net_rshares0
@oflyhigh ·
谢谢
properties (22)
authoroflyhigh
permlinkre-justyy-re-oflyhigh-steemsql-20170811t123141542z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:31:48
last_update2017-08-11 12:31:48
depth2
children0
last_payout2017-08-18 12:31: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_length2
author_reputation6,390,365,246,540,642
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,496,532
net_rshares0
@krischy ·
我也今天剛剛参加了,沒有看到我的 lol'
properties (22)
authorkrischy
permlinkre-oflyhigh-steemsql-20170811t124303375z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:43:03
last_update2017-08-11 12:43:03
depth1
children6
last_payout2017-08-18 12:43: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_length21
author_reputation35,623,033,479,163
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,497,583
net_rshares0
@oflyhigh ·
$0.07
啊
第二期“谷哥点名”活動: 第一次 離鄉別井 2017-08-11 09:36:03
@krischy

冤枉好人,该当何罪? 😭
👍  
properties (23)
authoroflyhigh
permlinkre-krischy-re-oflyhigh-steemsql-20170811t130707173z
categorycn
json_metadata{"tags":["cn"],"users":["krischy"],"app":"steemit/0.1"}
created2017-08-11 13:07:12
last_update2017-08-11 13:07:12
depth2
children5
last_payout2017-08-18 13:07:12
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation6,390,365,246,540,642
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,499,789
net_rshares20,431,916,559
author_curate_reward""
vote details (1)
@krischy ·
是小妹沒看清楚 , 我來跪玻璃 😭 😭
properties (22)
authorkrischy
permlinkre-oflyhigh-re-krischy-re-oflyhigh-steemsql-20170811t131115177z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 13:11:15
last_update2017-08-11 13:11:15
depth3
children4
last_payout2017-08-18 13:11: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_length19
author_reputation35,623,033,479,163
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,500,122
net_rshares0
@lemooljiang ·
O婶威武啊
properties (22)
authorlemooljiang
permlinkre-oflyhigh-steemsql-20170811t123140157z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:31:51
last_update2017-08-11 12:31:51
depth1
children1
last_payout2017-08-18 12:31:51
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_length5
author_reputation439,295,032,322,756
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,496,541
net_rshares0
@oflyhigh ·
诗王威武!
properties (22)
authoroflyhigh
permlinkre-lemooljiang-re-oflyhigh-steemsql-20170811t123928590z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:39:33
last_update2017-08-11 12:39:33
depth2
children0
last_payout2017-08-18 12:39:33
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_length5
author_reputation6,390,365,246,540,642
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,497,273
net_rshares0
@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)
authormunazir
permlinkre-oflyhigh-2017811t20423037z
categorycn
json_metadata{"tags":"cn","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-11 13:42:36
last_update2017-08-11 13:42:36
depth1
children0
last_payout2017-08-18 13:42:36
cashout_time1969-12-31 23:59:59
total_payout_value0.329 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length403
author_reputation1,530,585,952,548
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,502,894
net_rshares101,828,369,092
author_curate_reward""
vote details (1)
@nicolemoker ·
我看到很多第一次的標題!支持支持!
properties (22)
authornicolemoker
permlinkre-oflyhigh-steemsql-20170811t120928432z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:09:27
last_update2017-08-11 12:09:27
depth1
children3
last_payout2017-08-18 12:09: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_length17
author_reputation38,924,181,771,499
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,494,683
net_rshares0
@oflyhigh ·
$0.07
谢谢美女支持
加了好多第一次,哈哈,算作弊不?
👍  
properties (23)
authoroflyhigh
permlinkre-nicolemoker-re-oflyhigh-steemsql-20170811t121225881z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:12:33
last_update2017-08-11 12:12:33
depth2
children2
last_payout2017-08-18 12:12:33
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation6,390,365,246,540,642
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,494,896
net_rshares20,431,916,559
author_curate_reward""
vote details (1)
@nicolemoker ·
還是你利害,什麼問題也能解決!
properties (22)
authornicolemoker
permlinkre-oflyhigh-re-nicolemoker-re-oflyhigh-steemsql-20170811t122007581z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:20:09
last_update2017-08-11 12:20:09
depth3
children1
last_payout2017-08-18 12:20:09
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_length15
author_reputation38,924,181,771,499
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,495,492
net_rshares0
@sharoon ·
Really post is very nice and impressive but i don,t know this language
properties (22)
authorsharoon
permlinkre-oflyhigh-steemsql-20170812t034448884z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-12 03:44:45
last_update2017-08-12 03:44:45
depth1
children0
last_payout2017-08-19 03:44:45
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_length70
author_reputation-330,640,444,933
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,564,177
net_rshares0
@shasol ·
I wish I could understand chinese. I am learning chinese through google translator. New language is always good.
Upvoted
properties (22)
authorshasol
permlinkre-oflyhigh-steemsql-20170812t122923914z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-12 12:29:42
last_update2017-08-12 12:29:42
depth1
children0
last_payout2017-08-19 12:29: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_length120
author_reputation26,682,877,461
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,594,432
net_rshares0
@simonsayz ·
Thanks, very informative, I am following you now @oflyhigh
properties (22)
authorsimonsayz
permlinkre-oflyhigh-steemsql-20170811t132724257z
categorycn
json_metadata{"tags":["cn"],"users":["oflyhigh"],"app":"steemit/0.1"}
created2017-08-11 13:27:24
last_update2017-08-11 13:27:24
depth1
children0
last_payout2017-08-18 13:27: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_length58
author_reputation974,561,107,557
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,501,526
net_rshares0
@sweeti ·
哇!谢谢分享^^值得收藏
properties (22)
authorsweeti
permlinkre-oflyhigh-steemsql-20170812t150922523z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-12 15:09:45
last_update2017-08-12 15:09:45
depth1
children0
last_payout2017-08-19 15:09:45
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_length12
author_reputation8,559,430,744,296
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,606,834
net_rshares0
@sylvia1997 ·
很实用哎
properties (22)
authorsylvia1997
permlinkre-oflyhigh-steemsql-20170811t120919271z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:09:15
last_update2017-08-11 12:09:15
depth1
children1
last_payout2017-08-18 12:09: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_length4
author_reputation56,767,985,711,616
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,494,668
net_rshares0
@oflyhigh ·
谢谢夸奖
properties (22)
authoroflyhigh
permlinkre-sylvia1997-re-oflyhigh-steemsql-20170811t121150305z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:11:57
last_update2017-08-11 12:11:57
depth2
children0
last_payout2017-08-18 12:11: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_length4
author_reputation6,390,365,246,540,642
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,494,852
net_rshares0
@theoccultcorner ·
I cant understand a word what this post says but it looks cool.
👍  
properties (23)
authortheoccultcorner
permlinkre-oflyhigh-2017811t735871z
categorycn
json_metadata{"tags":"cn","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-11 14:03:12
last_update2017-08-11 14:03:12
depth1
children0
last_payout2017-08-18 14:03: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_length63
author_reputation4,202,077,424,216
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,505,125
net_rshares0
author_curate_reward""
vote details (1)
@travelgirl ·
O 哥哥 這個很實用啊 👍
properties (22)
authortravelgirl
permlinkre-oflyhigh-steemsql-20170811t122751451z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:27:54
last_update2017-08-11 12:27:54
depth1
children1
last_payout2017-08-18 12:27: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_length13
author_reputation1,618,894,945,653,125
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,496,185
net_rshares0
@oflyhigh ·
谢谢夸奖
properties (22)
authoroflyhigh
permlinkre-travelgirl-re-oflyhigh-steemsql-20170811t123205238z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:32:12
last_update2017-08-11 12:32:12
depth2
children0
last_payout2017-08-18 12:32: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_length4
author_reputation6,390,365,246,540,642
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,496,573
net_rshares0
@tvb · (edited)
关键知识点:like N'%区块链%'"
properties (22)
authortvb
permlinkre-oflyhigh-steemsql-20170813t213307834z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-13 21:33:12
last_update2017-08-13 21:33:54
depth1
children0
last_payout2017-08-20 21:33: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_length20
author_reputation35,399,037,650,048
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,722,512
net_rshares0
@x-p ·
$0.06
English translation please?
👍  , ,
properties (23)
authorx-p
permlinkre-oflyhigh-steemsql-20170811t125827394z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:58:33
last_update2017-08-11 12:58:33
depth1
children1
last_payout2017-08-18 12:58:33
cashout_time1969-12-31 23:59:59
total_payout_value0.053 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation344,318,215,269
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,499,027
net_rshares16,496,068,655
author_curate_reward""
vote details (3)
@techtek ·
Yes please :)
👍  
properties (23)
authortechtek
permlinkre-x-p-re-oflyhigh-steemsql-20170811t155109672z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 15:51:27
last_update2017-08-11 15:51:27
depth2
children0
last_payout2017-08-18 15:51: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_length13
author_reputation28,283,249,927,543
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,515,595
net_rshares1,321,892,026
author_curate_reward""
vote details (1)
@zhijun ·
万一中奖了呢……
properties (22)
authorzhijun
permlinkre-oflyhigh-steemsql-20170811t123110409z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:31:12
last_update2017-08-11 12:31:12
depth1
children1
last_payout2017-08-18 12:31: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_length8
author_reputation4,497,626,226,754
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,496,472
net_rshares0
@oflyhigh ·
😀
properties (22)
authoroflyhigh
permlinkre-zhijun-re-oflyhigh-steemsql-20170811t123907663z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-08-11 12:39:12
last_update2017-08-11 12:39:12
depth2
children0
last_payout2017-08-18 12:39: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_length1
author_reputation6,390,365,246,540,642
root_title第一次使用STEEMSQL查询谷哥点名数据
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,497,239
net_rshares0