Sql 如何在informix中检查临时表计数

Sql 如何在informix中检查临时表计数,sql,stored-procedures,informix,temp-tables,Sql,Stored Procedures,Informix,Temp Tables,如何检查Temp表在informixlike中的行 我检查c中的数据表# 我希望像我的informix存储过程临时表中的上一个检查一样执行此操作。使用标准: SELECT COUNT(*) FROM temp_table_1234 在存储过程和触发器中,您可以像这样使用它: ... for each row when (select count(*) from my_temp_table > 1) ... ... for each row when (select

如何检查Temp表在
informix
like中的行

我检查c中的数据表#


我希望像我的informix存储过程临时表中的上一个检查一样执行此操作。

使用标准:

SELECT COUNT(*) FROM temp_table_1234
在存储过程和触发器中,您可以像这样使用它:

... 
for each row
    when (select count(*) from my_temp_table > 1) ...
... 
for each row
    when (select count(*) from my_temp_table > 1) ...