Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能 by dapeng

View this thread on steempeak.com
· @dapeng · (edited)
$6.79
Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能
Several days ago, I saw on my post a comment by @arcange, indicating that my query to SteemSQL affected the performance of the server. I contacted @arcange immediately. He kindly explained to me with patience that I should use `CONTAINS()` instead of `LIKE`, and  `depth=0` instead of `title = ''` to search efficiently. Now my search is much faster than before. Great thanks to @arcange! You can [vote](https://v2.steemconnect.com/sign/account-witness-vote?witness=arcange&approve=true) @arcange as a witness so as to support his great work!

This post tells the details of the story mentioned above. Hopefully it could help other SteemSQL users.

不久前,我的某篇帖子收到来自阿灿哥(arcange)的一条回复:

> Hello @dapeng,
>
> You are issuing query to SteemSQL that negatively impact the infrastructure performances and penalize others users.
> 
> Please contact me on [steem.chat](http://steem.chat/direct/arcange) or on Discord!
>

我英语不好,大概感觉是好像我不知怎地把 SteemSQL 服务器给破坏了,好像是捅了大漏子。这个问题不久前 @tvb 跟我讨论过,没想到现在轮到我了,吓得我赶紧去 chat 联系阿灿哥负荆请罪。

原以为会被骂一通,谁料想阿灿哥非常 nice,给我如此这般详细解释了一番。

他说,我在搜索 SteemSQL 数据库的时候,用的两个指令效率太低。一个是 `LIKE`,一个是` title <> ''`。例如,我搜索“华语好声音”活动的帖子时,搜索的条件是以 'cn-voice' 为标签 + 标题不为空:

```
SELECT 
    * 
FROM 
    Comments 
WHERE 
    title <> '' 
    AND
     json_metadata LIKE '%"cn-voice"%'
```

阿灿哥说,`LIKE`这个操作极度耗费资源。SteemSQL 最近支持对帖子的标题、正文和 json 元数据进行全文检索了,所以应该用 `CONTAINS`来代替 `LIKE`,并且用 `depth = 0` 来选取标题不为空的帖子(> 0的话就是选取评论):

````
SELECT
    * 
FROM
     Comments 
WHERE 
    depth = 0 
    AND 
    CONTAINS(json_metadata, "cn-voice")
````

阿灿哥会说中文,特意告诉我支持中文检索哦,例如:

```
SELECT
    *
FROM
    Comments 
WHERE
    CONTAINS(title,  N'月旦评')
```

用了新方法之后,查询果然快多了,即使数据量大的时候,几秒也能查完,而原先则是需要几十秒甚至几分钟,我还以为是我电脑的问题。

我猜想肯定很多用户都遇到这个问题了,但是我还没看到专门说这个的帖子(如果有,请告诉我),所以就写出来跟大家分享。

感谢阿灿哥!可以通过[投票](https://v2.steemconnect.com/sign/account-witness-vote?witness=arcange&approve=true) @arcange 当见证人来支持他。
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
post_id52,598,756
authordapeng
permlinkimprove-the-query-with-contains-and-depth-steemsql
categorycn
json_metadata"{"links": ["https://v2.steemconnect.com/sign/account-witness-vote?witness=arcange&approve=true", "http://steem.chat/direct/arcange"], "format": "markdown", "tags": ["cn", "steem", "steemsql", "cn-programming", "programming"], "app": "steemit/0.1", "users": ["arcange", "dapeng", "tvb"]}"
created2018-06-11 11:50:06
last_update2018-06-11 12:16:57
depth0
children24
net_rshares2,584,618,182,034
last_payout2018-06-18 11:50:06
cashout_time1969-12-31 23:59:59
total_payout_value5.667 SBD
curator_payout_value1.125 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1,869
author_reputation64,235,894,740,263
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (48)
@superoo7 ·
$0.03
arcange会说中文?哇!
他之前也有在我的po文告诉我关于使用CONTAINS来代替LIKE
properties (22)
post_id52,599,272
authorsuperoo7
permlinkre-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180611t115448275z
categorycn
json_metadata"{"tags": ["cn"], "app": "steemit/0.1"}"
created2018-06-11 11:54:48
last_update2018-06-11 11:54:48
depth1
children6
net_rshares0
last_payout2018-06-18 11:54:48
cashout_time1969-12-31 23:59:59
total_payout_value0.024 SBD
curator_payout_value0.001 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length48
author_reputation25,572,770,303,018
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@dapeng ·
会一点。可能跟我的德语水平差不多。
properties (22)
post_id52,600,875
authordapeng
permlinkre-superoo7-re-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180611t120848223z
categorycn
json_metadata"{"tags": ["cn"], "app": "steemit/0.1"}"
created2018-06-11 12:08:51
last_update2018-06-11 12:08:51
depth2
children3
net_rshares0
last_payout2018-06-18 12:08: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_length17
author_reputation64,235,894,740,263
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@superoo7 ·
大鹏哥那么谦虚,我有个德国朋友,在那儿几乎都用德语,很难用英文交流.
properties (22)
post_id52,601,281
authorsuperoo7
permlinkre-dapeng-re-superoo7-re-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180611t121218865z
categorycn
json_metadata"{"tags": ["cn"], "app": "steemit/0.1"}"
created2018-06-11 12:12:18
last_update2018-06-11 12:12:18
depth3
children2
net_rshares0
last_payout2018-06-18 12:12: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_length34
author_reputation25,572,770,303,018
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@arcange ·
我学会了几个月的中文说话。不幸的是,我不做法不够。😢
properties (22)
post_id52,608,528
authorarcange
permlinkre-superoo7-re-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180611t131531429z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2018-06-11 13:15:33
last_update2018-06-11 13:15:33
depth2
children1
net_rshares0
last_payout2018-06-18 13:15: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_length26
author_reputation231,443,210,169,699
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@superoo7 ·
好厉害!!!👏
properties (22)
post_id52,611,152
authorsuperoo7
permlinkre-arcange-re-superoo7-re-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180611t133848817z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2018-06-11 13:38:15
last_update2018-06-11 13:38:15
depth3
children0
net_rshares0
last_payout2018-06-18 13: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_length7
author_reputation25,572,770,303,018
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@cn-naughty.boy ·
@dapeng, 代码/编程/IT搞得很溜啊,陶醉本尊了,快扶我一下...
properties (22)
post_id52,599,552
authorcn-naughty.boy
permlink20180611t115706548z-post
categorycn
json_metadata"{"tags": ["cn"]}"
created2018-06-11 11:57:06
last_update2018-06-11 11:57:06
depth1
children0
net_rshares0
last_payout2018-06-18 11:57:06
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_length37
author_reputation804,554,661,723
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@trisolaran · (edited)
$0.18
upvoted for arcange = 阿灿
properties (22)
post_id52,607,071
authortrisolaran
permlinkre-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180611t130309675z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2018-06-11 13:03:09
last_update2018-06-11 13:03:21
depth1
children3
net_rshares0
last_payout2018-06-18 13:03:09
cashout_time1969-12-31 23:59:59
total_payout_value0.164 SBD
curator_payout_value0.014 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length24
author_reputation1,533,047,303,368
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@dapeng ·
哥!
properties (22)
post_id52,607,367
authordapeng
permlinkre-trisolaran-re-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180611t130539586z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2018-06-11 13:05:39
last_update2018-06-11 13:05:39
depth2
children1
net_rshares0
last_payout2018-06-18 13:05: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_length2
author_reputation64,235,894,740,263
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@trisolaran ·
$0.06
没注意,还真自带一个“哥”
properties (22)
post_id52,609,399
authortrisolaran
permlinkre-dapeng-re-trisolaran-re-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180611t132335047z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2018-06-11 13:23:36
last_update2018-06-11 13:23:36
depth3
children0
net_rshares0
last_payout2018-06-18 13:23:36
cashout_time1969-12-31 23:59:59
total_payout_value0.044 SBD
curator_payout_value0.014 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length13
author_reputation1,533,047,303,368
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@arcange ·
非常感谢 🙇
properties (22)
post_id52,608,661
authorarcange
permlinkre-trisolaran-re-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180611t131654672z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2018-06-11 13:16:54
last_update2018-06-11 13:16:54
depth2
children0
net_rshares0
last_payout2018-06-18 13:16: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_length6
author_reputation231,443,210,169,699
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@arcange ·
$0.04
我很高兴能帮助你。
properties (22)
post_id52,608,985
authorarcange
permlinkre-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180611t131945134z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2018-06-11 13:19:45
last_update2018-06-11 13:19:45
depth1
children2
net_rshares0
last_payout2018-06-18 13:19:45
cashout_time1969-12-31 23:59:59
total_payout_value0.034 SBD
curator_payout_value0.004 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9
author_reputation231,443,210,169,699
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@dapeng ·
阿灿哥的中文真的不错!
properties (22)
post_id52,727,009
authordapeng
permlinkre-arcange-re-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180612t103217265z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2018-06-12 10:32:18
last_update2018-06-12 10:32:18
depth2
children0
net_rshares0
last_payout2018-06-19 10:32: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_length11
author_reputation64,235,894,740,263
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tvb ·
早知道那天和你说中文了哈哈哈哈哈
properties (22)
post_id52,751,361
authortvb
permlinkre-arcange-re-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180612t144002015z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2018-06-12 14:40:03
last_update2018-06-12 14:40:03
depth2
children0
net_rshares0
last_payout2018-06-19 14:40: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_length16
author_reputation35,846,309,024,528
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@steemitboard ·
Congratulations @dapeng! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x70/http://steemitboard.com/notifications/postallweek.png)](http://steemitboard.com/@dapeng) You published a post every day of the week

<sub>_Click on the badge to view your Board of Honor._</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>


To support your work, I also upvoted your post!


> Do you like [SteemitBoard's project](https://steemit.com/@steemitboard)? Then **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
post_id52,618,484
authorsteemitboard
permlinksteemitboard-notify-dapeng-20180611t143806000z
categorycn
json_metadata"{"image": ["https://steemitboard.com/img/notify.png"]}"
created2018-06-11 14:38:06
last_update2018-06-11 14:38:06
depth1
children0
net_rshares0
last_payout2018-06-18 14:38:06
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_length723
author_reputation38,705,954,145,809
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@shine.wong ·
续费好了?
properties (22)
post_id52,689,190
authorshine.wong
permlinkre-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180612t025546492z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2018-06-12 02:56:09
last_update2018-06-12 02:56:09
depth1
children1
net_rshares0
last_payout2018-06-19 02: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_length5
author_reputation1,373,339,077,399
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@dapeng ·
是的,但是……我想想再说。
properties (22)
post_id52,726,890
authordapeng
permlinkre-shinewong-re-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180612t103059041z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2018-06-12 10:31:00
last_update2018-06-12 10:31:00
depth2
children0
net_rshares0
last_payout2018-06-19 10:31: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_length13
author_reputation64,235,894,740,263
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@rivalhw ·
$1.14
LIKE 这个用法应该彻底废弃,低效又低能,再加个通配符*,天下最一烂,没有之一。
properties (22)
post_id52,724,004
authorrivalhw
permlinkre-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180612t100010166z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2018-06-12 10:00:06
last_update2018-06-12 10:00:06
depth1
children2
net_rshares0
last_payout2018-06-19 10:00:06
cashout_time1969-12-31 23:59:59
total_payout_value1.137 SBD
curator_payout_value0.006 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length41
author_reputation385,084,072,019,334
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@dapeng ·
呜呜呜呜~~~~~
properties (22)
post_id52,726,521
authordapeng
permlinkre-rivalhw-re-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180612t102650312z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2018-06-12 10:26:51
last_update2018-06-12 10:26:51
depth2
children0
net_rshares0
last_payout2018-06-19 10:26: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_length9
author_reputation64,235,894,740,263
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tvb ·
并不是,contains和like的结果不一样的。
contains是把文本拆成单词再进行对比的。
如果标题是'月旦评|文章标题'时,这样是可以的。
但如果是标日是'月旦评文章标题'里,使用CONTAINS函数时,这个文章就会被漏掉的。
properties (22)
post_id52,782,563
authortvb
permlinkre-rivalhw-re-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180612t195609333z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2018-06-12 19:56:09
last_update2018-06-12 19:56:09
depth2
children0
net_rshares0
last_payout2018-06-19 19: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_length118
author_reputation35,846,309,024,528
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tvb ·
这就是我和 @arange那天研究的内容哈哈。
不过不能这样用的,因为contains这个函数是取单词的,用空格隔开能取到,如果用别的符号应该也能,但如果连在一起比如“月旦评的故事”就搜不到的。
properties (22)
post_id52,751,296
authortvb
permlinkre-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180612t143926703z
categorycn
json_metadata"{"app": "steemit/0.1", "users": ["arange"], "tags": ["cn"]}"
created2018-06-12 14:39:27
last_update2018-06-12 14:39:27
depth1
children2
net_rshares0
last_payout2018-06-19 14:39: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_length97
author_reputation35,846,309,024,528
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@dapeng ·
读了十遍,你这条回复我仍然没读懂。
properties (22)
post_id52,755,848
authordapeng
permlinkre-tvb-re-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180612t152215286z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2018-06-12 15:22:15
last_update2018-06-12 15:22:15
depth2
children0
net_rshares0
last_payout2018-06-19 15:22: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_length17
author_reputation64,235,894,740,263
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tvb ·
微信上和你说
properties (22)
post_id52,780,022
authortvb
permlinkre-tvb-re-dapeng-improve-the-query-with-contains-and-depth-steemsql-20180612t192746976z
categorycn
json_metadata"{"app": "steemit/0.1", "tags": ["cn"]}"
created2018-06-12 19:27:48
last_update2018-06-12 19:27:48
depth2
children0
net_rshares0
last_payout2018-06-19 19:27: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_length6
author_reputation35,846,309,024,528
root_title"Improve the query with 'CONTAINS' and 'depth' 用这条指令来大幅度提高 SteemSQL 的查询性能"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000