Complete reference for all T-SQL function categories with version-specific availability.
| CONCAT(str1, str2, ...) | NULL-safe concatenation | 2012+ | | CONCATWS(sep, str1, ...) | Concatenate with separator | 2017+ | | STRINGAGG(expr, sep) | Aggregate strings | 2017+ | | STRINGSPLIT(str, sep) | Split to rows | 2016+ | | STRINGSPLIT(str, sep, 1) | With ordinal column | 2022+ | | TRIM([chars FROM] str) | Remove leading/trailing | 2017+ |
| TRANSLATE(str, from, to) | Character replacement | 2017+ | | FORMAT(value, format) | .NET format strings | 2012+ |
Referencia completa de funciones T-SQL para SQL Server y Azure SQL Database. Utilice esta habilidad cuando: (1) El usuario pregunta sobre cadenas T-SQL, fechas, matemáticas o funciones de conversión, (2) El usuario necesita ayuda con funciones de ventana/clasificación, (3) El usuario trabaja con JSON o XML en T-SQL, (4) El usuario pregunta sobre funciones agregadas o GROUP BY, (5) El usuario necesita funciones de sistema o metadatos. Fuente: josiahsiegel/claude-plugin-marketplace.