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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T11:38:01+00:00 2026-05-13T11:38:01+00:00

I am currently using this type of SQL on MySQL to insert multiple rows

  • 0

I am currently using this type of SQL on MySQL to insert multiple rows of values in one single query:

INSERT INTO `tbl` (`key1`,`key2`) VALUES ('r1v1','r1v2'),('r2v1','r2v2'),...

On the readings on PDO, the use prepared statements should give me a better security than static queries.

I would therefore like to know whether it is possible to generate “inserting multiple rows of values by the use of one query” using prepared statements.

If yes, may I know how can I implement it?

  • 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-13T11:38:01+00:00Added an answer on May 13, 2026 at 11:38 am

    Multiple Values Insert with PDO Prepared Statements

    Inserting multiple values in one execute statement. Why because according to this page it is faster than regular inserts.

    $data[] = ['valueA1', 'valueB1'];
    $data[] = ['valueA2', 'valueB2'];
    

    more data values or you probably have a loop that populates data.

    That is basically how we want the insert statement to look like:

    insert into table (fielda, fieldb, ... ) values (?,?...), (?,?...)....
    

    So with prepared inserts you need to know the number of fields to create a single VALUES part and the number of rows in order to know how many times to repeat it.

    Now, the code:

    // create the ?,? sequence for a single row
    $values = str_repeat('?,', count($data[0]) - 1) . '?';
    // construct the entire query
    $sql = "INSERT INTO table (columnA, columnB) VALUES " .
        // repeat the (?,?) sequence for each row
        str_repeat("($values),", count($data) - 1) . "($values)";    
    
    $stmt = $pdo->prepare ($sql);
    // execute with all values from $data
    $stmt->execute(array_merge(...$data));
    

    Note that this approach is 100% secure, as the query is constructed entirely of constant parts explicitly written in the code, especially the column names.

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

Sidebar

Ask A Question

Stats

  • Questions 312k
  • Answers 312k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Try this instead: score.ToString("0.000000") May 13, 2026 at 10:37 pm
  • Editorial Team
    Editorial Team added an answer Your question: is the statement " static methods should use… May 13, 2026 at 10:37 pm
  • Editorial Team
    Editorial Team added an answer You'd have to put a static counter in that was… May 13, 2026 at 10:37 pm

Related Questions

The Problem So I'm writing my web based application and it dawns on me
Ok.. So I'm trying to improve my SQL skills and have a question. Here
I am currently using Microsoft's FOR XML PATH feature to pull data back from
I think I am very close to assembling an MVC repository correctly but just
Im having problems displaying records to my view when passing viewdata to a user

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.