如何在 informix (12.10) 视图中使用 Round 函数

How to use Round function in informix (12.10) view

需要在我的一个视图中使用舍入函数来舍入数值列。但是当我尝试保存它时显示语法 error.Please help me

Round function implemented in my view

问题不在于 ROUND 函数,而在于 CREATE VIEW 语法。

你有:

CREATE VIEW AS test1234 SELECT …

你需要:

CREATE VIEW test1234 AS SELECT …