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.
我正在 as/400 上的 DB/2 上编写查询以选择仓库中货物的总重量。我有列重量和计数 - 现在我需要的是:
select weight, count, (weight * count) as total from warehouse
但是这个查询不起作用,我收到错误消息:
* use not valid.
谁能给我一个想法我做错了什么?
确保重量和计数具有数字类型。如果不是,请更改您的表格设计或将数据转换为数字类型。