I am not very expereinced with SWQL or SQL, I am just wondering if there is a way for me to edit the following code to display based on our requriedments and information that is already stored in the database?
This code is for us to display the Perfstack Projects created by our users as there is no easy way for us to share these projects without keep sending links around.
"
SELECT
DisplayName AS [Project]
,'/ui/perfstack/' + ProjectID AS [_LinkFor_Project]
,AccountID AS [Created By]
,UpdateDateTime AS [Last Updated On]
,CreateDateTime AS [Created On]
FROM Orion.PerfStack.Projects
ORDER BY DisplayName ASC
"
This is currently fine as it is, however I would like if I could possibly remove duplicate named projects and only display the one that has the most recent "UpdateDateTime", this would mean that everyone would always see the one report and it looks as if when someone saves it on their sides and updates it that its all the one report. We might change this in future to become embedded if there is more than one with the same name and people can see all the modifications by different users but not for now.