7 lines
417 B
MySQL
7 lines
417 B
MySQL
|
/****** Object: Index [NonClusteredIndex-CostControlId-ProjectId] Script Date: 2023/5/6 9:14:19 ******/
|
||
|
CREATE NONCLUSTERED INDEX [NonClusteredIndex-CostControlId-ProjectId] ON [dbo].[WBS_CostControl]
|
||
|
(
|
||
|
[CostControlId] ASC,
|
||
|
[ProjectId] ASC
|
||
|
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
|
||
|
GO
|