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 5974979
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T21:01:08+00:00 2026-05-22T21:01:08+00:00

I have about 30 tables in my database: table1 table2 table3 table4 table5 etc.

  • 0

I have about 30 tables in my database:

table1 table2 table3 table4 table5 etc.

I want all tables to use AUTO_INCREMENT=1, how do I modify the tables?

Here is the sample DDL of one of the tables. I have never defined AUTO_INCREMENT in any of the tables, it is fetching the value by default.

CREATE TABLE `amenities` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
  • 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-22T21:01:08+00:00Added an answer on May 22, 2026 at 9:01 pm

    To change the value of the AUTO_INCREMENT counter to be used for new rows, do this:

    ALTER TABLE `table_name` AUTO_INCREMENT = 1;
    

    To update all your 31 tables you can use this php script:

    <?php
    $tables = array('table1','table2','tableX'); //continue here
    foreach($tables as $update)
    {
         mysql_query("ALTER TABLE `".$update."` AUTO_INCREMENT = 1;");
    }
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a MySQL database using MySQL Workbench. It has about 20 tables.
I have been wondering about temp tables in sp's and how all that can
I have a MSSQL2005 DB with about 140 tables. I want to create either
I have a Visual Studio 2005 BIDS project that exports about 30 database tables
I have database of about 5 tables. I am going to need to get
I currently have about 4 different database tables which output to html tables. Each
We have a database that has grown to about 50GB and we want to
Say I have at database table containing information about a news article in each
Greetings friends, In my MySQL database, I have 'MAB' table which contains information about
I have a question about tables in MySQL. I'm currently making a website where

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.