How can I combine 2 rows into 1 with sqlite-android.
There are 2 rows in my sqlite table.
Basically, parent does not have any 'null' value. However, child may have 'null'.
child's 'null' will be changed to parent's 'non-null' value.
(example)
title     item1     item2     item3
------------------------------------
parent    1         2         3
child     null      20        null
If I combine above 2 rows,
(combine above table)
title     item1     item2     item3
------------------------------------
child     1         20        3
How can I do this?
 
    