หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
✅ Azure Stream Analytics ✅ Fabric Eventstream
Returns a character expression with lowercase character data converted to uppercase.
Syntax
UPPER ( string_expression )
Arguments
string_expression
Is the string expression to be evaluated. string_expression can be a constant or column of type nvarchar(max)
Return Types
nvarchar(max)
Examples
SELECT TollId, EntryTime, UPPER(LicensePlate) AS LicensePlate_Upper
FROM Input