I have a query in OBIEE which delivers the following Result Set.
Is it possible to someway get the last column to display 1 to N for each Phone Number that is the same. This means that instead of 2,2,2,2,1,1,6,6,6,6,6,6 we would in the last column have 1,2,1,2,1,1,1,2,3,4,5,6
I am hitting a mental block here. The SQL used to generate the query mentioned is:
SELECT "service request"."SR #" saw_0,
"- contact communication"."Mobile Phone #" saw_1,
Count("- contact communication"."Mobile Phone #") saw_2
FROM "service requests"
WHERE ( "service request dealer"."Local Dealer Number" = '20536' )
AND ( "- contact communication"."Mobile Phone #" IS NOT NULL )
GROUP BY saw_1
ORDER BY saw_1
I don't mind either modifying the above query or combining or joining it with another query. Please help.
Try this: