Is it possible to create a Kusto external table that is connected to an Azure storage account ?
The idea is not to connect a csv or parquet file in a container, but an ADLSgen2 Table like this:
.create external table ExternalTable (PartitionKey: string, RowKey:string, Timestam:datetime, col1:string, col2:string)
kind=storage
dataformat=table
( h@'https://storageaccount.blob.core.windows.net/mytable;secretKey')
If I understand correctly, you're asking about Azure Table Storage - that is not supported as a source for an external table in Kusto.
If you choose to do so, you can ingest the data from the Azure Table into Kusto (e.g. using Azure Data Factory).