-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpurchaseorder.sql
37 lines (32 loc) · 996 Bytes
/
purchaseorder.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
USE [SUPPLYCHAIN]
GO
/****** Object: Table [dbo].[purchaseorder] Script Date: 27-10-2023 17:16:28 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[purchaseorder](
[PO_ID] [int] IDENTITY(1,1) NOT NULL,
[P_ID] [nvarchar](255) NULL,
[Availability] [float] NULL,
[Number_of_products_sold] [float] NULL,
[Revenue_generated] [float] NULL,
[Stock_levels] [float] NULL,
[Lead_times] [float] NULL,
[Order_quantities] [float] NULL,
[Shipping_times] [float] NULL,
[Shipping_carriers] [nvarchar](255) NULL,
[Shipping_costs] [float] NULL,
[Supplier_Id] [float] NULL,
[Location] [nvarchar](255) NULL,
[Lead_time] [float] NULL,
[Production_volumes] [float] NULL,
[Manufacturing_lead_time] [float] NULL,
[Manufacturing_costs] [float] NULL,
[Inspection_results] [nvarchar](255) NULL,
[Defect_rates] [float] NULL,
[Transportation_id] [float] NULL,
[Routes] [nvarchar](255) NULL,
[Costs] [float] NULL
) ON [PRIMARY]
GO