Dodaj pliki projektów.

This commit is contained in:
2025-10-31 12:50:24 +01:00
parent 06b6823bd9
commit 7173a37b29
169 changed files with 53145 additions and 0 deletions
@@ -0,0 +1,21 @@
-- =============================================
-- Author: MK
-- Create date:
-- Description:
-- 0.2 sortowanie wg kodu
-- =============================================
CREATE PROCEDURE myconsult_haftmittel.ListaSkladnikow
AS
BEGIN
SET NOCOUNT ON;
SELECT 0 AS Id, '' AS Kod, '' AS Nazwa
UNION ALL
SELECT SLW_ID
, SLW_WartoscS
, SLW_Nazwa
FROM CDN.Slowniki
WHERE SLW_SLSId = 144
ORDER BY Kod
END
GO