如何将表作为参数传递给存储过程

时间:2021-08-01 11:43:59

标签: teradata

在 teradata 中可以实现类似的功能吗?

create procedure my_proc(in table_param table)
begin
    insert into table1
    select *
    from table_param;
end;

我相信在 T-SQL 中是可能的

0 个答案:

没有答案
相关问题