Hi,
I have column in table (integer type) where I have values like
1001
-blank-
-blank-
1002
-blank-
-blank-
1003
What I want to do is to fulfill blank rows in next manner:
between 1001 and 1002 all blank values to be 1001
between 1002 and 1003 all blank values to be 1002 and so on,
but query
"update table set field =1001 where field between 1001 and 1002" not working,it is same when I try with > and <
I have column in table (integer type) where I have values like
1001
-blank-
-blank-
1002
-blank-
-blank-
1003
What I want to do is to fulfill blank rows in next manner:
between 1001 and 1002 all blank values to be 1001
between 1002 and 1003 all blank values to be 1002 and so on,
but query
"update table set field =1001 where field between 1001 and 1002" not working,it is same when I try with > and <