/*==============================================================*/ /* DBMS name: Microsoft SQL Server 2008 */ /* Created on: 2/10/2022 5:38:38 PM */ /*==============================================================*/ use shop go /*==============================================================*/ /* Index: CONTAIN_FK */ /*==============================================================*/ create index CONTAIN_FK on CONTAIN ( OID ASC ) go /*==============================================================*/ /* Index: PLACED_FK */ /*==============================================================*/ create index PLACED_FK on ORDER_INFO ( CID ASC ) go /*==============================================================*/ /* Index: HAS_FK */ /*==============================================================*/ create index HAS_FK on ORDER_INFO ( DIS_ID ASC ) go /*==============================================================*/ /* Index: STOCKED_FK */ /*==============================================================*/ create index STOCKED_FK on PRODUCTS ( DID ASC ) go /*==============================================================*/ /* Index: IN_FK */ /*==============================================================*/ create index IN_FK on PRODUCTS ( CAT_ID ASC ) go /*==============================================================*/ /* Index: SUPPLY2_FK */ /*==============================================================*/ create index SUPPLY2_FK on SUPPLY ( PID ASC ) go