Azure Data Explorer supposedly supports T-SQL queries:
The Kusto.Explorer tool supports T-SQL queries to Kusto. To instruct Kusto.Explorer to execute a query, begin the query with an empty T-SQL comment line (--).
However, I can't get this to work in a Log Analytics Workspace.
For instance, this Kusto query works fine and returns results:
ContainerInstanceLog_CL
| where Message has "Hamlet"
| limit 500
But any attempt to use T-SQL (with a leading empty comment line) ...
--
SELECT * FROM ContainerInstanceLog_CL
...fails with
Query could not be parsed at '-' on line [1,1]
Token: -
Line: 1
Position: 1
Are T-SQL queries not supported in Log Analytics Workspaces?