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

  • Home
  • SEARCH
  • 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 6578165
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T15:44:10+00:00 2026-05-25T15:44:10+00:00

I want to copy a table (say tbl_1) from one database (say source_db) to

  • 0

I want to copy a table (say tbl_1) from one database (say source_db) to another database (say target_db), with following things in consideration:

  • Structure of table should be preserved, including primary key and
    auto-increment key

  • While creating a copy of tbl_1, I need to rename it to cpy_tbl_1

How it is possible using query?

P.S. I know there will be many similar questions like mine, but I have those special considerations too.

  • 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. Editorial Team
    Editorial Team
    2026-05-25T15:44:10+00:00Added an answer on May 25, 2026 at 3:44 pm
    CREATE TABLE db_target.cloned_table 
    SELECT * 
    FROM db_source.source_table;
    

    With the previous sentence the table will be created with just the fields and it’s types, but no keys, constraints, engine will be set. You can specify them manually in the same sentence like this:

    CREATE TABLE db_target.cloned_table (
      a INT NOT NULL AUTO_INCREMENT,
      PRIMARY KEY (a), KEY(b)
    ) ENGINE=MyISAM 
    SELECT b,c FROM db_source.source_table;
    

    mysql create table doc

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

Sidebar

Related Questions

I want to copy data from one table to another in MySQL. Table 1
Using VB 6 and Access 2003 I want to copy a table from one
I want to copy a row from a table in a database to an
I need to use PHP to copy data from one MySQL database to another.
I want to copy table from postgis database to the PC hard drive (format
How can I copy data from one table (table A) to another (table B)
i want to Copy data one table to another table my table out put
I want to copy the values of one node to another in sql server(2005
I want to copy Table DOG from DB ANIMAL1 and copy/create the data to
I want to copy data of table into another but I have a pain

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.