Azure SQL
Learn how to use the Azure SQL node to query your Azure SQL database with natural language or SQL, including required inputs, configurations, and output details.
TABLE Sales ( CustomerName TEXT, OrderAmount REAL, OrderDate DATE );What is the total order amount for 2024?SELECT SUM(OrderAmount) FROM Sales WHERE YEAR(OrderDate) = 2024;
Last updated
Was this helpful?

