Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Default values in Insert Select in SQL

How to pass default values in the Insert Select construction 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 table2 into table1 with a construction similar to this:

    insert into table1 select field1, field2, DEFAULT from table2

Is it possible to use something instead of DEFAULT in my example to get the task done? How are previously selected tables usually inserted with default values?

like image 512
Alex Avatar asked Jan 30 '26 03:01

Alex


1 Answers

Try

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

I tested this using 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
like image 105
Adriaan Stander Avatar answered Jan 31 '26 16:01

Adriaan Stander



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!