actualCapitalUnit 和actualCapitalUnitModel 都是什么?
Re:update select wsand 2012-01-01 12:00
请问oracle中多字段更新(本表数据+外表数据)时如何处理?
update monthOrder a
set cnt=cnt+, money=money+ --这里该如何写
(select count(*), sum(money)
from custOrder b
where b.flag='0'
and a.id=b.id
)
where exists (1
from custOrder b
where b.flag='0'
and a.id=b.id
)
;
@doo
[quote]doo:臭。。。。。没有一点价值。。[/quote]
留点口德吧。有实践就有价值。
Re:线程安全类 跨线程修改窗体UI Lenic 2011-01-21 15:58
在 3.0 或更高版本上开发的时候匿名方法可以使用 Lambda 表达式代替。