Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 167457
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T12:16:43+00:00 2026-05-11T12:16:43+00:00

I want to copy a row from a table in a database to an

  • 0

I want to copy a row from a table in a database to an identical table in another database. For testing purposes I created this:

CREATE TABLE stuff  (absid integer primary key, otherfield string ); 

and table 'stuff' is as above in two database, testdb1 and testdb2. Then I put two rows into 'stuff' in testdb1. From a command line, I can then copy a row from one db to the other, thus:

prompt> sqlite3 testdb1  sqlite> attach database testdb2 as testdb2;  sqlite> insert into testdb2.stuff select * from stuff where absid=2;  sqlite> ^d  prompt> 

So far so good. BUT: it is quite possible in the application where I actually want to do this for real, that there will be key clashes. For example, if I use the above sequence to copy the row back to testdb1, I get:

SQL error: PRIMARY KEY must be unique 

What I would like to happen is that when the row is copied, a new unique absid is chosen automatically if there is a conflict. Is there a way I can specify this with a more complex select * ... above?

I guess I can get round this by creating another db (in memory, say) with the identical table but without the primary key constraint, and doing the copy in two steps (setting absid to null in between), but I’d prefer a smarter way if one exists.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T12:16:44+00:00Added an answer on May 11, 2026 at 12:16 pm

    In the end I made an in-memory database, with the same table except leaving off ‘primary key’. I did a first ‘insert into mytable select * from … ‘ into the in-memory database, then set absid to null, and then a second ‘insert into …’ into the target db. That way I got the row copied and with a new key value.

    Although there is a second step, this whole action (in my app) is not done with huge numbers of rows so efficiency becomes secondary to maintainability.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.