vote up 1 vote down star

I have 2 columns

date   number       
----   ------
1      3           
2      NULL        
3      5           
4      NULL        
5      NULL        
6      2          
.......

I need to replace the NULL values with new values takes on the value from the last known value in the previous date in the date column eg: date=2 number = 3, date 4 and 5 number = 5 and 5. The NULL values appear randomly.

flag
1  
Can you please identify the brand of SQL database you're using, e.g. MySQL, Oracle, SQL-Server, and edit your question to add that tag? – Bill Karwin Aug 28 at 4:51
Do you mean the date in a previous row, or the previous date (day -1)? Perhaps give an example of the data that you have in the columns and an example of the output that you desire. – Degan Aug 28 at 4:56
@Bill, he may want a generic solution. Some of us actually like the ability to switch easily between DBMS' when they become a PITA :-) Still, it's very hard (maybe impossible) to do this in standard SQL, @mike, so if you have a specific DBMS in mind, by all means let us know. – paxdiablo Aug 28 at 5:11
1  
@Pax: I agree with the goal of a portable solution, but there are also benefits to using the most clear and efficient vendor-specific solution. – Bill Karwin Aug 28 at 5:56

7 Answers

vote up 1 vote down

First of all, do you really need to store the values? You may just use the view that does the job:

SELECT  t."date",
        x."number" AS "number"
FROM    @Table t
JOIN    @Table x
    ON  x."date" = (SELECT  TOP 1 z."date"
                    FROM    @Table z
                    WHERE   z."date" <= t."date"
                        AND z."number" IS NOT NULL
                    ORDER BY z."date" DESC)

If you really do have the ID ("date") column and it is a primary key (clustered), then this query should be pretty fast. But check the query plan: it might be better to have a cover index including the Val column as well.

Also if you do not like procedures when you can avoid them, you can also use similar query for UPDATE:

UPDATE  t
SET     t."number" = x."number"
FROM    @Table t
JOIN    @Table x
    ON  x."date" = (SELECT  TOP 1 z."date"
                    FROM    @Table z
                    WHERE   z."date" < t."date" --//@note: < and not <= here, as = not required
                        AND z."number" IS NOT NULL
                    ORDER BY z."date" DESC)
WHERE   t."number" IS NULL

NOTE: the code must works on "SQL Server".

link|flag
vote up 1 vote down

Here is the Oracle solution (10g or higer).

SQL> select *
  2  from mytable
  3  order by id
  4  /

        ID    SOMECOL
---------- ----------
         1          3
         2
         3          5
         4
         5
         6          2

6 rows selected.

SQL> select id
  2         , last_value(somecol ignore nulls) over (order by id) somecol
  3  from mytable
  4  /

        ID    SOMECOL
---------- ----------
         1          3
         2          3
         3          5
         4          5
         5          5
         6          2

6 rows selected.

SQL>
link|flag
Could you use LAG instead of LAST_VALUE? If so, that'd make it 8i+ compatible. – OMG Ponies Aug 28 at 14:33
No. LAG() only works with a fixed offset. The given test data has a variable offset. – APC Aug 28 at 20:22
vote up 0 vote down

Here's a MySQL solution:

UPDATE mytable
SET number = (@n := COALESCE(number, @n))
ORDER BY date;

This is concise, but won't necessary work in other brands of RDBMS. For other brands, there might be a brand-specific solution that is more relevant. That's why it's important to tell us the brand you're using.

It's nice to be vendor-independent, as @Pax commented, but failing that, it's also nice to use your chosen brand of database to its fullest advantage.


Explanation of the above query:

@n is a MySQL user variable. It starts out NULL, and is assigned a value on each row as the UPDATE runs through rows. Where number is non-NULL, @n is assigned the value of number. Where number is NULL, the COALESCE() defaults to the previous value of @n. In either case, this becomes the new value of the number column and the UPDATE proceeds to the next row. The @n variable retains its value from row to row, so subsequent rows get values that come from the prior row(s). The order of the UPDATE is predictable, because of MySQL's special use of ORDER BY with UPDATE (this is not standard SQL).

link|flag
COALESCE is supported on SQL Server (2000?), and Oracle 9i+, but I don't get what the @n is doing. – OMG Ponies Aug 28 at 6:13
@rexem: See edit above. – Bill Karwin Aug 28 at 6:46
Cool - thanks! Neat trick. – OMG Ponies Aug 28 at 14:29
vote up 0 vote down
UPDATE TABLE
   SET number = (SELECT MAX(t.number)
                  FROM TABLE t
                 WHERE t.number IS NOT NULL
                   AND t.date < date)
 WHERE number IS NULL
link|flag
max(t.value) doesn't work -- you want the value with the max id < myid, not the max value. Have to order by id desc, then take top 1 (using top() or limit or rownum.. depends on specific db) – SquareCog Aug 28 at 5:57
@SquareCog: Re-read the OP: ...replace the NULL [number column] values with new values taken from the last known [number column] value in the previous date in the date column eg: date=2 number = 3, date 4 and 5 number = 5 and 5. – OMG Ponies Aug 28 at 6:02
vote up 0 vote down

Perhaps this SO thread is what u r looking for.

link|flag
vote up 3 vote down

If you are using Sql Server this should work

DECLARE @Table TABLE(
    	ID INT,
    	Val INT
)

INSERT INTO @Table (ID,Val) SELECT 1, 3
INSERT INTO @Table (ID,Val) SELECT 2, NULL
INSERT INTO @Table (ID,Val) SELECT 3, 5
INSERT INTO @Table (ID,Val) SELECT 4, NULL
INSERT INTO @Table (ID,Val) SELECT 5, NULL
INSERT INTO @Table (ID,Val) SELECT 6, 2


SELECT  *,
    	ISNULL(Val, (SELECT TOP 1 Val FROM @Table WHERE ID < t.ID AND Val IS NOT NULL ORDER BY ID DESC))
FROM    @Table t
link|flag
vote up 0 vote down

In a very general sense:

UPDATE MyTable
SET MyNullValue = MyDate
WHERE MyNullValue IS NULL
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.