Why am I unable to query my sqlite db?

SQB DB complex query problem?

  • Hello, I am in a bit of corner here - I have a three tables in my DB. users(ID, login, fname, lname); relation(ID, userA_ID, userB_ID) and a temp table temp(ID, loginA, loginB). Temp table contains relation between two users in a manner of their logins. What I want is to update table "relation" according to "temp" so that all the relations would be bound by user ID's rather than logins. Could you help me out, please ? Thanks.

  • Answer:

    insert relation (UserA_ID, Userb_ID) select A.ID, B.ID from temp T inner join Users A on A.login = T.loginA inner join Users B on B.login = T.loginB

Mantas D at Yahoo! Answers Visit the source

Was this solution helpful to you?

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.