通过在Atlassian confluence中的表转换器宏中使用另一个公共列作为sql中的键来添加2个表的列的值
我是 Atlassian 中的 SQL 新手,并且有一个查询,因为我日常使用的 SQL 和 Atlassian confluence 中的表转换器宏中使用的 SQL 之间存在一些差异,
我想创建一个可在 Atlassian confluence 中的表转换器宏中使用的 SQL 查询。它应该总结具有相同标题名称的两个表的列值,并使用另一个公共列作为键来完全连接它们。假设我有下面给出的 2 个表表
1
键 | num |
---|---|
katie | 23 |
Jack | 41 |
June | 43 |
表 2
键 | num |
---|---|
paty | 20 |
Jack | 21 |
June | 4 |
我希望通过“Atlassian-valid”SQL
Key | 获取下表num |
---|---|
Katie | 23 |
paty | 20 |
Jack | 62 |
June | 47 |
你能帮我拿这个吗?
I am new to SQL in Atlassian and have a query as there is some difference between my daily used SQL and the SQL used in table transformer macro in Atlassian confluence
I want to create an SQL query that can be used in table transformer macro in Atlassian confluence. It should sum up the column values of two tables having the same header name and full-join them by using another common column as a key.Let's say I have 2 tables given below
Table 1
Key | num |
---|---|
katie | 23 |
Jack | 41 |
June | 43 |
Table 2
Key | num |
---|---|
paty | 20 |
Jack | 21 |
June | 4 |
And I want the obtain the below table through an "Atlassian-valid" SQL
Key | num |
---|---|
Katie | 23 |
paty | 20 |
Jack | 62 |
June | 47 |
Can u please help me to get this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以尝试(在SQL中,我不知道Attlassian产品):
DBFIDDLE
Your can try (in SQL, I do not know Attlassian products):
DBFIDDLE