informix视图怎么传参数

informix视图如何传参数我想实现如下功能:ceate view test(@para varchar(20))asselect * from user_info

informix视图如何传参数
我想实现如下功能:
ceate view test(@para varchar(20))
as

select * from user_info where userid=@para

但是在informix数据库中执行有错误,请高手指教

[解决办法]
有两个错误
ceate view test(@para varchar(20)) 
as 

select * from user_info where userid=@para 

1 改为:select 单个字段 from user_info user_info where userid=@para 

2 ceate view test(@para varchar(20) )
好像不能够定义为特定的类型,此问题我也在关注中,看能否另有高手解决。
改为:ceate view test(@para)