开发者

Stored procedure for inserting a constant plus values from another table

开发者 https://www.devze.com 2023-01-23 23:53 出处:网络
How to modify the following stored procedure if we want in the inserted records the Col3 contain a constant string \'Foo\'?

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   T开发者_开发问答able1


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


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

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号