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.
我在 SSAS 中有一个数据类型为 system.byte 的列。
我问你的问题。
在 SSAS 中的命名计算中,我需要使用什么语法将值从字节转换为 int?
当然,知道如何从字节转换为字符串也很棒。
您在数据源视图中为计算列使用的语法是关系数据源的语法,即如果您使用 SQL Server 关系数据库作为源,那么它将是 Transact SQL 语法,如果您使用 Oracle 数据库,那么您应该使用 Oracle SQL 语法等。
在大多数关系数据库系统中,类型转换语法是
CAST(<expression> as <target data type>)
一些关系数据库系统也支持其他转换方法,但以上是所有关系数据库或多或少都支持的标准方法。