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?