diff options
| author | Andrew <saintruler@gmail.com> | 2021-12-17 08:32:28 +0400 |
|---|---|---|
| committer | Andrew <saintruler@gmail.com> | 2021-12-17 08:32:28 +0400 |
| commit | 08759bd954b66aff9f63881b3ea5c7abcfc495fe (patch) | |
| tree | 4fcf3e54ae1b5415c04e50838b186579c701b2af /task7_procedures.sql | |
| parent | 15860fa29285ce48959f980dd44027f683f28b66 (diff) | |
Исправил шестую и седьмую лабы
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 |