Does anyone nows how to replace null values with another column in another table in SQLite
say this select statement
SELECT t1._id , t1.name , t2.img FROM
t1 JOIN t2 on (t1._id = t2._id);
if t1._id == null i want to return t2._id in that column