An Azure relational database service.
One way to do that is to export the output of a Kusto query executed on the Azure Log Analytics to an Azure SQL Database by using the .export management command. This command allows you to run a query and have its results sent to a table in an SQL database, such as an Azure SQL Database. Below an example:
.export to sql LogAnalytics "Server=tcp:myserver.database.windows.net,1433;Database=mydatabase;User ID=mylogin@myserver;Password=mypassword;Encrypt=true;TrustServerCertificate=false;Connection Timeout=30;" <| AzureActivity | where OperationName == "Create or Update Virtual Machine" | project ResourceGroup, Resource, Caller, TimeGenerated
You can schedule the execution of a query like the above on Azure Automation.