Updating my STEEMSQL query for this summer 😎 | 为知夏日改进 STEEMSQL 查询😎 (by @ace108)|



HEADER-Swimming with SteemSQL



Sometime ago, I used steemsql to figure out all my posts ever and shared the details in this previous posts:

FIRST305
#TIL I know what you did last summer😎 | 我知道你去年夏天做了什么😎


🎶Meanwhile, some music for you to enjoy as you read. This piece is part of Vivaldi’s The Four Seasons, particular the first of the 4 violin concertos, called Autumn.
🎶让大家继续读的时候,欣赏一点音乐。这件作品是维瓦尔第的“四季”的一部分 - 4小提琴协奏曲中的第一首,名为“秋天”。
Source | 来源: https://musopen.org/

Updating … | 改进。。。第一把


This new query will extract the tags, title, posts from one author and also Markdown formatted list and you can export the result out all in one file instead of two.

这回改进让你将一位用户全部的帖子的标签,标题,网址,Markdown格式化一次过一起提出。

SELECT 
    created,
    Category,
   JSON_VALUE(json_metadata,'$.tags[0]') tag1,   
   JSON_VALUE(json_metadata,'$.tags[1]') tag2, 
   JSON_VALUE(json_metadata,'$.tags[2]') tag3,
   JSON_VALUE(json_metadata,'$.tags[3]') tag4,
   JSON_VALUE(json_metadata,'$.tags[4]') tag5,
    root_title,
    'https://steemit.com' + url post_link,
    '* ['+ title + '](https://steemit.com' + permlink + ')' MD_post_link,
    '' + 
    '' +
    root_title + '' +
    '' html_link
FROM
    Comments cm WITH (NOLOCK)
WHERE
    (
        author = 'ace108' ------ A U T H O R
    ) AND
     (
        depth = 0
    ) AND 
    created >= DATEADD(yy, DATEDIFF(yy, 0, GETDATE()), 0)   ---- FOR THIS YEAR ONLY
ORDER BY created DESC

You can copy a column of the result you want to a text file and edit quite easily. In the first part, you can see the tags are in different columns.

您可以将所需结果相当容易的列复制到其他文件中进行的编辑。在第一部分中,您可以看到标签在不同的列中。
SSS180
IMAGE LINK|图片链接: https://supload.com/H1xfOU57pZ

Next is the post title and a link to the post.

接下来是帖的标题和一个链接。
SSS190
IMAGE LINK|图片链接: https://supload.com/B1ZfdUqXp-

Lastly, these 2 columns are in Markdown and HTML. You can easily copy out the HTML one into a table or copy the Markdown one into your post or comment.

最后,这两列是Markdown和HTML。 您可以轻易地将HTML列复制到表格中,或将Markdown复制到您的帖或留言中。
SSS200
IMAGE LINK|图片链接: https://supload.com/rkMfdLqmab

If you paste Markdown a comment, this is what you should see.

如果您在留言中贴上Markdown的评论,这是你应该看到的。

SSS190

IMAGE LINK|图片链接: https://supload.com/HJxiHO-Vp-

Is this cool or not? It’s all in one.

够酷吧?全都出来了。





Now, you can DIY and extract a list of all your posts.

现在,您可以动手提取所有帖子的资料。

SEPARATOR-Dolphins In on Blue

ACE108-SignaturePhoto167f6.png

Recent Post

FIRST2
📊🌏中日韩龙虎榜自20171014 | CJK Top Pending Payout Post since 20171014
FIRST3
🌞#BeautifulSunday - Powered up Winners for the week with help of steemsql | 美丽星期天 - 这周赢家找了steemsql帮手
FIRST4
💸💸💸 Happy Diwali [CONTEST]|排灯节🕯️送奖游戏 😎
FIRST5
📊[IMPROVED] Top 20 Level 1 commenters for 20171016, active hours and how their comments looks like
FIRST6
📊🌏中日韩龙虎榜自20171013 | CJK Top Pending Payout Post since 20171013
FIRST7
💸💸💸3721 giveaway result and a little lesson on 3721 | 3721 送奖结果😎
FIRST8
📊[IMPROVED] Top 20 Level 1 commenters for 20171015, active hours and how their comments looks like
FIRST9
TIL on #BeautifulSunday Power BI Homework - 美丽星期天。学习Power BI 做功课

SEPARATOR-Dolphins In on Blue

Please see my other posts: @ace108

请看我其他帖: @ace108

Separator-ACE-800

I See👀. I Shoot📷. I Steemit♨️.


H2
H3
H4
3 columns
2 columns
1 column
15 Comments