UPPER(Azure 流分析)
返回小写字符数据转换为大写的字符表达式。
语法
UPPER ( string_expression )
参数
string_expression
是要计算的字符串表达式。 string_expression可以是 nvarchar 类型的常量或列 (max)
返回类型
nvarchar(max)
示例
SELECT TollId, EntryTime, UPPER(LicensePlate) AS LicensePlate_Upper
FROM Input