Skip to content

Conversation

JessieAMorris
Copy link

Oracle uses a

INSERT ALL
   INTO "table" ("column") VALUES ("value")
   INTO "table" ("column") VALUES ("value2")
SELECT * FROM dual;

syntax instead of the standard syntax of

INSERT INTO "table" ("column") VALUES ("value"), ("value2");

This pull request changes bulk inserts for Oracle to use the proper oracle specific (👎 ) syntax.

Jessie A. Morris added 2 commits February 7, 2018 16:55
Oracle uses a

```
INSERT ALL
   INTO "table" ("column") VALUES ("value")
   INTO "table" ("column") VALUES ("value2")
SELECT * FROM dual;
```

syntax instead of the standard syntax of

```
INSERT INTO "table" ("column") VALUES ("value"), ("value2");
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant