I see a table in the Orion SQL Server database called AlertConditionState but nothing resembling that in the SWQL tool. is that table not included in that tool? If it is included, what would be the name in SQWL?
It's not a 1:1 relationship between the SQL tables and the SWQL entities. What are you trying to accomplish? It might be in a single entity or multiple entities in SWQL.
You can get a lot of the same detail with this SWQL:
select --top 100 AlertID, AO.AlertConfigurations.LastEdit as [AlertLastEdit], 0 as [ConditionIndex], NULL as [Type], EntityUri as [ObjectID], AStatus.LastUpdate as [TimeStamp], AO.AlertActive.AlertActiveID, NULL as [ResolveOn], ContextFROM Orion.AlertObjects AOinner join Orion.AlertStatus AStatus on AStatus.AlertObjectID = AO.AlertObjectIDORDER BY LastTriggeredDateTime Desc