简体   繁体   中英

Stored procedure for inserting a constant plus values from another table

How to modify the following stored procedure if we want in the inserted records the Col3 contain a constant string 'Foo'?

INSERT Table2
       (Col1,
       Col2,
       Col3)
SELECT T1Col1,
       T1Col2
FROM   Table1
INSERT Table2
       (Col1,
       Col2,
       Col3)
SELECT T1Col1,
       T1Col2,
       'Something'
FROM   Table1
INSERT Table2
       (Col1,
       Col2,
       Col3)
SELECT T1Col1,
       T1Col2,
       'Foo'
FROM   Table1

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM