Joe Pawlowski (DHL Supply Chain) Thanks for posting your question in Microsoft Q&A. From the code snippet above, you are using SQL output binding to write the data to the table. As per doc: Azure SQL output binding for Azure Functions, the CommandText
property should point to the name of the table not SQL statement. The output binding actually uses MERGE statement (T-SQL) to write the data and UPDATE
statement is not supported (hence you faced the syntax error).
We do have a lot of samples available here for different languages such as Python, C# for output bindings and I suggest you referring that for usage. Specifically on UPDATE
functionality, check out this discussion and let me know if you face any issues or have any other questions with the samples.
For any feedback on SQL extension, please submit it via Issues or Discussions and our product team will assist you with that. I hope this helps with your questions.
If you found the answer to your question helpful, please take a moment to mark it as "Yes" for others to benefit from your experience. Or simply add a comment tagging me and would be happy to answer your questions.