question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Is there a way I can express multiline insert operation?

INSERT INTO table (col1,col2,col3) 
VALUES
  (1, 1, 1),
  (2, 2, 2),
  (3, 3, 3);

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:9 (7 by maintainers)

github_iconTop GitHub Comments

1reaction
megafinzcommented, Dec 6, 2018

@Zaid-Ajaj Okay, thanks, will use the binary import then.

0reactions
megafinzcommented, Apr 16, 2019

@rommsen Yep, I guess it is, thanks!

Read more comments on GitHub >

github_iconTop Results From Across the Web

SQL Server INSERT Multiple Rows Into a Table Using One ...
To insert multiple rows returned from a SELECT statement, you use the INSERT INTO SELECT statement. SQL Server INSERT multiple rows – examples....
Read more >
Inserting multiple rows in a single SQL query? [duplicate]
INSERT statements that use VALUES syntax can insert multiple rows. To do this, include multiple lists of column values, each enclosed within ...
Read more >
How to INSERT Multiple Records in SQL
Traditional SQL INSERT query injects input data into multiple rows. In this technique, we need to the insert query as many times we...
Read more >
Learn SQL: Insert multiple rows commands
The most basic approach to insert multiple rows in SQL is using the INSERT INTO VALUES command. Several SQL developers think that this...
Read more >
SQL Query to Insert Multiple Rows
In this article, we see how to insert individual as well as multiple rows in a database using the INSERT statement in the...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found