错误 1000:AFx Library 库异常:不支持类型 Decimal

Error 1000: AFx Library library exception: Type Decimal is not supported

我正在尝试使用 Azure ML 平台查询 MS Access Web 应用程序 (SQL Azure)。我尝试捕获的字段类型为 Fixed-point number (6 decimal places),Azure 中的默认数字字段类型 SQL。当我尝试查询该字段时,出现错误:

Error 1000: AFx Library library exception: Type Decimal is not supported

我试过将其转换为另一种形式,如下所示:

select cast(a) FROM b

得到错误:

Error 0069: SQL query "select cast("a" as float) from "b"" is not correct: Column names cannot be null or empty.

什么给了?

此外,Azure ML 不支持 Azure SQL 上的默认设置???

根据 serhiyb 的回答,胜利是将它分配给另一个变量:

Select cast("field" as float) as 'someAlias' FROM "Table"