2 调用proc_1存储过程
Assuming you are using a SQL database, here is an example of how to call proc_1 stored procedure:
EXEC proc_1 @parameter1 = 'value1', @parameter2 = 'value2';
Replace @parameter1 and @parameter2 with the names of the parameters used in the stored procedure and replace value1 and value2 with the actual values you want to pass as arguments.
原文地址: https://www.cveoy.top/t/topic/hbWf 著作权归作者所有。请勿转载和采集!