Is it possible to create two columns pulling data from the Table/Rows each with their own WHERE clause?
Incorrect but shows what I am looking for:
SELECT
t1.NameA,
t1.NameB
FROM
(SELECT
a.Name as NameA,
b.Name as NameB
from Orion.Test.Name as a
LEFT JOIN
(SELECT
Name
ReferenceID
FROM Orion.Test.Name
WHERE Name = 'B' ) as b ON b.ReferenceID = a.ReferenceID
WHERE Name = 'A') as t1
When I try this format I and getting multiple duplicate values and Im sure its due to the WHERE clause. I am not too strong on SWQL and it could be a simple fix
@mesverrum