如何使用sqlite-android将2行合并为1。
我的sqlite表中有两行。
基本上,父母没有任何' null'值。 但是,孩子可能会“无效”。
孩子' null'将被更改为父母的非空的'值。
(example)
title item1 item2 item3
------------------------------------
parent 1 2 3
child null 20 null
如果我合并上面两行,
(combine above table)
title item1 item2 item3
------------------------------------
child 1 20 3
我该怎么做?