共用方式為


LEN (Azure Stream Analytics)

傳回指定字串運算式的字元數,但尾端空白不算。

語法

LEN ( string_expression )  
  

引數

string_expression

要評估的字串運算式。 string_expression 可以是常數或 nvarchar(max) 類型的資料行

傳回型別

BIGINT

範例

SELECT TollId, EntryTime, LicensePlate, LEN (LicensePlate) AS Len_License  
FROM Input TIMESTAMP BY EntryTime  
WHERE Toll > 5