Initial commit

This commit is contained in:
user
2026-07-12 13:56:05 +04:00
commit 04bf3a4b58
850 changed files with 9057 additions and 0 deletions
@@ -0,0 +1,15 @@
USE [Database]
IF OBJECT_ID('[Procedures].[insert_product_value]', 'P') IS NOT NULL
DROP PROCEDURE [Procedures].[insert_product_value];
GO
CREATE PROCEDURE [Procedures].[insert_product_value]
@product_id AS INT,
@attribute_id AS INT,
@value AS NVARCHAR(128)
AS
BEGIN TRANSACTION;
INSERT INTO [Tables].[product_values]([product_id], [attribute_id], [value])
VALUES (@product_id, @attribute_id, @value);
COMMIT TRANSACTION;
GO