Thanks to visit codestin.com
Credit goes to github.com

Skip to content

db_export insert syntax options #12978

@OlafvdSpek

Description

@OlafvdSpek
include column names in every INSERT statement 
      Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3)
insert multiple rows in every INSERT statement
      Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)
both of the above
      Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3), (4,5,6), (7,8,9)
neither of the above
      Example: INSERT INTO tbl_name VALUES (1,2,3)

This could be just two checkboxes..

What SQL server doesn't understand the field names though?

Metadata

Metadata

Assignees

No one assigned

    Labels

    EnhancementA feature request for improving phpMyAdminUIIssues relating to the user interface

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions