通过在Atlassian confluence中的表转换器宏中使用另一个公共列作为sql中的键来添加2个表的列的值

发布于 2025-01-10 06:01:57 字数 992 浏览 0 评论 0原文

我是 Atlassian 中的 SQL 新手,并且有一个查询,因为我日常使用的 SQL 和 Atlassian confluence 中的表转换器宏中使用的 SQL 之间存在一些差异,

我想创建一个可在 Atlassian confluence 中的表转换器宏中使用的 SQL 查询。它应该总结具有相同标题名称的两个表的列值,并使用另一个公共列作为键来完全连接它们。假设我有下面给出的 2 个表表

1

num
katie23
Jack41
June43

表 2

num
paty20
Jack21
June4

我希望通过“Atlassian-valid”SQL

Key获取下表num
Katie23
paty20
Jack62
June47

你能帮我拿这个吗?

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

Keynum
katie23
Jack41
June43

Table 2

Keynum
paty20
Jack21
June4

And I want the obtain the below table through an "Atlassian-valid" SQL

Keynum
Katie23
paty20
Jack62
June47

Can u please help me to get this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小霸王臭丫头 2025-01-17 06:01:57

你可以尝试(在SQL中,我不知道Attlassian产品):

SELECT
     `key`,
     SUM(Num) as Num
FROM (
     SELECT `key`, Num
     FROM Table1
     UNION ALL
     SELECT `key`, Num
     FROM Table2
     ) x
GROUP BY `key`
ORDER BY `key` 

DBFIDDLE

Your can try (in SQL, I do not know Attlassian products):

SELECT
     `key`,
     SUM(Num) as Num
FROM (
     SELECT `key`, Num
     FROM Table1
     UNION ALL
     SELECT `key`, Num
     FROM Table2
     ) x
GROUP BY `key`
ORDER BY `key` 

DBFIDDLE

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文