如何检查Temp表中的行是informix
中的行
我在c#
中检查数据表if( dt != null && dt.rows.count >0)
{
//------
}
我想像以前检查我的informix存储过程临时表一样。
答案 0 :(得分:1)
使用标准:
SELECT COUNT(*) FROM temp_table_1234
在存储过程和触发器中,您可以使用它:
...
for each row
when (select count(*) from my_temp_table > 1) ...