I have a report query ins T-SQL and I need to use in SWQL:
Part of the query presenting error:
Select convert(varchar, r.Event_Time, 120) Event_Time, r.AccessPoint, CAST(r.Clients as int) Clients
Error:
2019-08-26 10:15:51,887 [72] ERROR SolarWinds.InformationService.Core.InformationService - SWQL Studio (null) Exception running query:
Select convert(varchar, r.Event_Time, 120) Event_Time, r.AccessPoint, CAST(r.Clients as int) Clients
From ( ...
QUESTION:
Are there any SWQL statement equivalent to the T-SQL below ?
convert(varchar, r.Event_Time, 120) Event_Time, r.AccessPoint, CAST(r.Clients as int) Clients
Thanks