Files
clickHouseData/sql-server-ddl/dbo.Master_Salesterritorylayer.Table.sql
T
2026-05-18 17:40:50 +05:30

23 lines
1.3 KiB
Transact-SQL

USE [CPMIndiaBusinessInsight]
GO
/****** Object: Table [dbo].[Master_Salesterritorylayer] Script Date: 5/18/2026 5:34:08 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Master_Salesterritorylayer](
[Id] [bigint] IDENTITY(1,1) NOT NULL,
[ProjectId] [int] NULL,
[StLayerOneId] [int] NULL,
[StLayerOneName] [nvarchar](300) NULL,
[StLayerTwoId] [int] NULL,
[StLayerTwoName] [nvarchar](300) NULL,
[StLayerThreeId] [int] NULL,
[StLayerThreeName] [nvarchar](300) NULL,
[StLayerFourId] [int] NULL,
[StLayerFourName] [nvarchar](300) NULL,
[CreateDate] [datetime] NULL,
[CreateBy] [nvarchar](50) NULL
) ON [PRIMARY]
GO