current_date_Prognose.sql 576 B

123456789101112131415161718192021
  1. CREATE TABLE [dbo].[current_date_Prognose] (
  2. [Bundeslaender Id] [nvarchar](255) NULL,
  3. [Invoice Date] [datetime] NULL,
  4. [Wochentage Id] [nvarchar](255) NULL,
  5. [Arbeitstag Mofr] [int] NULL,
  6. [Zaehler Mofr] [int] NULL,
  7. [Summe Mofr] [int] NULL,
  8. [Arbeitstag Mosa] [int] NULL,
  9. [Zaehler Mosa] [int] NULL,
  10. [Summe Mosa] [int] NULL,
  11. [Feiertage Id] [int] NULL,
  12. [Jahr] [int] NULL,
  13. [Arbeitstag Nr Jahr] [bigint] NULL,
  14. [Gesamt Arbeitstage] [int] NULL,
  15. [Tag_Dashboard] [int] NULL,
  16. [Monat_Dashboard] [int] NULL,
  17. [Jahr_Dashboard] [int] NULL
  18. )
  19. GO