我正在尝试做的是创建一个表(@tbl)运行时并从数据库中插入select语句中的数据,就像我到目前为止所做的那样
Davi,130
Joel,20
Emma,500
as"选择cid"语句返回多条记录
答案 0 :(得分:1)
我想您可能希望代码看起来像这样:
begin
declare @tbl TABLE (
Item int
);
insert into @tbl(Item)
select cid
from tbl_custumer
where cus_ph like '%'+'987'+'%';
select *
from @tbl;
end;
注意:
begin
/ end
块并不是必需的,但我猜测你是出于其他原因(存储过程,if
或类似的东西)。 values
时不需要insert . . . select
关键字。