v.20.10Improvement
COLUMNS Function Updated to Apply Column Transformers
Now COLUMNS can be used to wrap over a list of columns and apply column transformers afterwards. #14775 (Amos Bird).Why it matters
This feature simplifies the process of applying multiple column transformers by grouping columns together before applying transformations, improving query readability and maintainability.How to use it
Use theCOLUMNS keyword to wrap the desired columns and then apply column transformers on the entire group. For example:SELECT COLUMNS(column1, column2) <transformers> FROM table