customer_to_customercodes.sql 284 B

12345678910
  1. CREATE TABLE [dbo].[customer_to_customercodes] (
  2. [customer_number] [int] NOT NULL,
  3. [customer_code] [int] NOT NULL,
  4. [client_db] [varchar](20) NOT NULL
  5. ,CONSTRAINT [customer_to_customercodes$0] PRIMARY KEY CLUSTERED ([customer_number], [customer_code], [client_db])
  6. )
  7. GO