v.22.11Improvement
Add support for interactive parameters in INSERT VALUES queries
Add support for interactive parameters in INSERT VALUES queries. #43077 (Nikolay Degterinsky).
Why it matters
This feature enables users to use interactive parameters when inserting data withINSERT VALUES queries, improving query flexibility and security by allowing parameter binding instead of hard-coded values.How to use it
Use interactive parameters in yourINSERT INTO table VALUES queries by specifying placeholders in the VALUES clause and providing actual values interactively or via client bindings.