Azure Cosmos DB Core (SQL) API アカウントを持っている。 アカウント内のコンテナに対して次のクエリを実行します。 SELECT IS_NUMBER("1234") AS A, IS_NUMBER(1234) AS B, IS_NUMBER({prop: 1234}) AS C What is the output of the query?
正解:A
IS_NUMBER returns a Boolean value indicating if the type of the specified expression is a number. "1234" is a string, not a number.