Defaults in Insert Select in SQL

How to pass default values ​​to Insert Select construct in SQL?

I have a table:

    create table1 (field1 int, field2 int, field3 int default 1337)
    create table2 (field1 int, field2 int)

I want to insert table2in table1with a structure like this:

    insert into table1 select field1, field2, DEFAULT from table2

Is it possible to use something instead DEFAULTin my example to complete a task? How are previously selected tables usually inserted with default values?

+3
source share
1 answer

Try

INSERT INTO table1 (field1, field2)
SELECT field1, field2 FROM table2

I tested this with SQL Server 2005

DECLARE @Table1 TABLE(
        field1 INT,
        field2 INT,
        field3 INT DEFAULT 1337
)

INSERT INTO @Table1 (field1,field2,field3) SELECT 1, 2, 3

DECLARE @Table2 TABLE(
        field1 INT,
        field2 INT
)

INSERT INTO @Table2 (field1,field2) SELECT 15, 16

INSERT INTO @Table1 (field1,field2)
SELECT  field1,
        field2
FROM    @Table2

SELECT * FROM @Table1
+6
source

Source: https://habr.com/ru/post/1724065/


All Articles