変数の値と選択結果をテーブルに挿入したい。
declare @actual Date
set @actual = getdate()
これは私の試みです:
insert into test (ID, Date) (select ID, @actual from Table)
エラーメッセージが表示されます!!
変数の値と選択結果をテーブルに挿入したい。
declare @actual Date
set @actual = getdate()
これは私の試みです:
insert into test (ID, Date) (select ID, @actual from Table)
エラーメッセージが表示されます!!
使用INSERT INTO..SELECT
ステートメント、
DECLARE @actual Date
SET @actual = GETDATE()
INSERT INTO test (ID, Date)
SELECT ID, @actual
FROM Tablename
You can try like this for using a select clause for Insert
insert into test(id,date) select col1,col2 from table;
INSERT INTO TEST
(ID,DATE)
SELECT COLUMN1,COLUMN2 FROM TABLE