我有4个具有大量数据的类似表,我想从4个表中插入所需的列到1个用户定义的表中以构建报告,我如何使用存储过程做到这一点?
我尝试使用Union
从所有4个表中提取数据,我可以使用Insert
语句插入到表中。
如何创建一个存储过程来将值插入到表中?
create proc what_seems_to_be_my_first_proc
as begin
insert .... <--copy-paste your insert with unions here
end