Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
根据分析商店的文档。
什么是 Azure Cosmos DB 分析存储?
“第一个非空事件定义了列数据类型。任何不遵循第一个非空数据类型的文档都不会在分析存储中表示。”</p>
我想确认我的 DateTime 列被解释为 DateTime 而不是存储为字符串。
如何查看定义明确的模式表示?
有两种解决方案:
a) 创建一个视图,比如获取数据的 MyView。
b) 针对该视图运行以下命令。
sp_describe_first_result_set @tsql = N'select * from MyView where 1=0'