diff options
Diffstat (limited to 'task7_procedures.sql')
| -rw-r--r-- | task7_procedures.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/task7_procedures.sql b/task7_procedures.sql index 891db18..f3d7e84 100644 --- a/task7_procedures.sql +++ b/task7_procedures.sql @@ -41,10 +41,10 @@ DROP PROCEDURE calculate_order_price GO INSERT INTO Boxes (order_id, warehouse_id, wrapping_id, volume, weight) -VALUES (100020, 1, 1, 0.1, 10); +VALUES (100022, 1, 1, 0.1, 10); DECLARE @price INT; -EXEC calculate_order_price 100020, @price OUTPUT; +EXEC calculate_order_price 100022, @price OUTPUT; PRINT @price GO |