I have two table like this
- table_CN (_id, name, phone, favorite, title)
- table_EN (_id, name, phone, favorite)
Then I select _id value from two table
SELECT _id, name, phone, favorite FROM table_CN where _id='15'UNION SELECT _id, name, phone, favorite FROM table_EN where _id='15'
After that I don't know how to determine which table name to update data, can I do that with SQL query? I'm confusing here!