|
|
Sergey Kornilov admin 5/3/2011 |
|
If your database support subqueries you can use the following SQL query to achieve this: update MyTable set rate=0 where rate < (select max(rate) from MyTable) |
|
|
M
|
mik author 5/4/2011 |
|
thanks admin...for the reply and i will try the subquery technique... |
|
|
|
Sergey Kornilov admin 5/4/2011 |
|
I think you can use the same query in AfterAdd event. |
|