Here if you see the clickedLinkURL has 2 URL tags in it but using the below SQL query I get only one. Any help here to get both the URL?
Below is the SQL script.
SQL SELECT
"attr:soap" AS "soap",
"__KEY_Envelope",
(SELECT
"__KEY_Body",
"__FK_Body",
(SELECT
"attr:ns2" AS "ns2",
"__KEY_GetRawDataOutputElement",
"__FK_GetRawDataOutputElement",
(SELECT
"conversationId",
"conversationTimestamp",
"__KEY_conversations",
"__FK_conversations",
(SELECT
"URL"
,"__FK_clickedLinkURL"
FROM "clickedLinkURL" FK "__FK_clickedLinkURL")
FROM "conversations" PK "__KEY_conversations" FK "__FK_conversations")
FROM "GetRawDataOutputElement" PK "__KEY_GetRawDataOutputElement" FK "__FK_GetRawDataOutputElement")
FROM "Body" PK "__KEY_Body" FK "__FK_Body")
FROM XML "Envelope" PK "__KEY_Envelope" with connection( BODY "$(vRequestBody)");