I have a table with 3 columns in which one is empty.
its like this,
c1 c2 c3 1 1000 1 1001 1 1004 2 1005 2 1007 3 1009
I want to insert values to c3 like
c1 c2 c3 1 1000 1 1 1001 2 1 1004 3 2 1005 1 2 1007 2 3 1009 1
Can anybody help?
|
The simplest solution is the one that pilcrow describes above: for each record R,
(Replace |
|||||||||||||
|
|
This might be faster than the nested sub-select (but you will need to test it)
|
|||
|
|
c3is the count of all rows with the samec1which have ac2greater than or equal to that of the row in question. Tell us the RDBMs and someone can give you the correct UPDATE syntax. – pilcrow Mar 7 '12 at 4:03