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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T17:18:39+00:00 2026-05-29T17:18:39+00:00

I have a table with ONE bigint-field. Now I would like to insert millions

  • 0

I have a table with ONE bigint-field. Now I would like to insert millions of rows with an increment so I came up with this procedure:

CREATE PROCEDURE insertMe()
BEGIN
 DECLARE i BIGINT DEFAULT 1;
 WHILE (i <= 999999999) DO  
   INSERT INTO mytable values(i);  
   SET i=i+1;
 END WHILE;
END;

Of course this beast takes way too long, so normally I would do the following:

INSERT INTO mytable values(1),(2),(3) etc

But how do I create the String then and wouldn’t that take too long as well?

  • 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-29T17:18:42+00:00Added an answer on May 29, 2026 at 5:18 pm

    You can use an AUTO_INCREMENT field. If you attempt to insert a NULL in that field, MySQL generates the auto number for you so there is no need to build the (1), (2), … string. Give this a try:

    CREATE TABLE seed(column1 BIGINT AUTO_INCREMENT PRIMARY KEY) ENGINE=MyISAM;
    
    -- INSERT ONE ROW TO BEGIN WITH
    INSERT INTO seed(column1) VALUES(NULL);
    
    -- RUN THIS QUERY 20 TIMES TO GENERATE 1,048,576 ROWS
    INSERT INTO seed(column1)
    SELECT NULL
    FROM seed;
    

    20 iterations of the above queries on a MyISAM table took ~4.5 seconds.

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

Sidebar

Related Questions

I have a table storing millions of rows. It looks something like this: Table_Docs
I have a table that looks something like this CREATE TABLE MyTable( [RecordID] [bigint]
I have a table with one field that can point to a foreign key
I have a table structure like below : categoryID bigint , primary key ,
I have a table called People one of the columns is an xml field
I have this table structure: ID BIGINT IDENTITY(1,1) deviceID BIGINT NOT NULL, entryTime DATETIME2
I've a table which is defined like this CREATE TABLE [dbo].[MyTable]( [MyTableId] [bigint] IDENTITY(1,1)
I have a table whose size I'd like to keep down, and one of
I have one table that saves comments for a varied set of content types.
I have one table orders with a foreing key ProductID. I want to show

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.