tozjhua 发表于 2009-05-16 09:50

first问题

数据库:informix9.3
问题:如何用sql实现(排除其他编程方法)
      update table set col = 'aa' where col in (select first 10 col from table)

xxyyy 发表于 2009-05-16 22:11

first 不能用于子查询,所以你的问题无答案。

MicroHard 发表于 2009-05-16 23:02

select first 10 col from table into temp aaa with no log;
update table set col = 'aa' where col in (select col from aaa);
页: [1]
查看完整版本: first问题