Insert into … values ( SELECT … FROM … )

前端 未结 26 2419
我在风中等你
我在风中等你 2020-11-21 05:40

I am trying to INSERT INTO a table using the input from another table. Although this is entirely feasible for many database engines, I always seem to struggle t

相关标签:
26条回答
  • 2020-11-21 06:18

    Two approaches for insert into with select sub-query.

    1. With SELECT subquery returning results with One row.
    2. With SELECT subquery returning results with Multiple rows.

    1. Approach for With SELECT subquery returning results with one row.

    INSERT INTO <table_name> (<field1>, <field2>, <field3>) 
    VALUES ('DUMMY1', (SELECT <field> FROM <table_name> ),'DUMMY2');
    

    In this case, it assumes SELECT Sub-query returns only one row of result based on WHERE condition or SQL aggregate functions like SUM, MAX, AVG etc. Otherwise it will throw error

    2. Approach for With SELECT subquery returning results with multiple rows.

    INSERT INTO <table_name> (<field1>, <field2>, <field3>) 
    SELECT 'DUMMY1', <field>, 'DUMMY2' FROM <table_name>;
    

    The second approach will work for both the cases.

    0 讨论(0)
  • 2020-11-21 06:18
    INSERT INTO FIRST_TABLE_NAME (COLUMN_NAME)
    SELECT  COLUMN_NAME
    FROM    ANOTHER_TABLE_NAME 
    WHERE CONDITION;
    
    0 讨论(0)
  • 2020-11-21 06:19

    This worked for me:

    insert into table1 select * from table2
    

    The sentence is a bit different from Oracle's.

    0 讨论(0)
  • 2020-11-21 06:20

    Both the answers I see work fine in Informix specifically, and are basically standard SQL. That is, the notation:

    INSERT INTO target_table[(<column-list>)] SELECT ... FROM ...;
    

    works fine with Informix and, I would expect, all the DBMS. (Once upon 5 or more years ago, this is the sort of thing that MySQL did not always support; it now has decent support for this sort of standard SQL syntax and, AFAIK, it would work OK on this notation.) The column list is optional but indicates the target columns in sequence, so the first column of the result of the SELECT will go into the first listed column, etc. In the absence of the column list, the first column of the result of the SELECT goes into the first column of the target table.

    What can be different between systems is the notation used to identify tables in different databases - the standard has nothing to say about inter-database (let alone inter-DBMS) operations. With Informix, you can use the following notation to identify a table:

    [dbase[@server]:][owner.]table
    

    That is, you may specify a database, optionally identifying the server that hosts that database if it is not in the current server, followed by an optional owner, dot, and finally the actual table name. The SQL standard uses the term schema for what Informix calls the owner. Thus, in Informix, any of the following notations could identify a table:

    table
    "owner".table
    dbase:table
    dbase:owner.table
    dbase@server:table
    dbase@server:owner.table
    

    The owner in general does not need to be quoted; however, if you do use quotes, you need to get the owner name spelled correctly - it becomes case-sensitive. That is:

    someone.table
    "someone".table
    SOMEONE.table
    

    all identify the same table. With Informix, there's a mild complication with MODE ANSI databases, where owner names are generally converted to upper-case (informix is the exception). That is, in a MODE ANSI database (not commonly used), you could write:

    CREATE TABLE someone.table ( ... )
    

    and the owner name in the system catalog would be "SOMEONE", rather than 'someone'. If you enclose the owner name in double quotes, it acts like a delimited identifier. With standard SQL, delimited identifiers can be used many places. With Informix, you can use them only around owner names -- in other contexts, Informix treats both single-quoted and double-quoted strings as strings, rather than separating single-quoted strings as strings and double-quoted strings as delimited identifiers. (Of course, just for completeness, there is an environment variable, DELIMIDENT, that can be set - to any value, but Y is safest - to indicate that double quotes always surround delimited identifiers and single quotes always surround strings.)

    Note that MS SQL Server manages to use [delimited identifiers] enclosed in square brackets. It looks weird to me, and is certainly not part of the SQL standard.

    0 讨论(0)
  • 2020-11-21 06:20

    Simple insertion when table column sequence is known:

        Insert into Table1
        values(1,2,...)
    

    Simple insertion mentioning column:

        Insert into Table1(col2,col4)
        values(1,2)
    

    Bulk insertion when number of selected columns of a table(#table2) are equal to insertion table(Table1)

        Insert into Table1 {Column sequence}
        Select * -- column sequence should be same.
           from #table2
    

    Bulk insertion when you want to insert only into desired column of a table(table1):

        Insert into Table1 (Column1,Column2 ....Desired Column from Table1)  
        Select Column1,Column2..desired column from #table2
           from #table2
    
    0 讨论(0)
  • 2020-11-21 06:20

    You could try this if you want to insert all column using SELECT * INTO table.

    SELECT  *
    INTO    Table2
    FROM    Table1;
    
    0 讨论(0)
提交回复
热议问题