内容摘要:复制CREATETABLEvpdsample_clothing( clothing_idNUMBER, typeVARCHAR2(30),

复制CREATETABLEvpdsample_clothing( clothing_idNUMBER,系列详解
typeVARCHAR2(30), brandVARCHAR2(30), descriptonVARCHAR2(100) ); -- INSERTINTOvpdsample_clothingVALUES(10002,jacket,ABC,autumnstyle); INSERTINTOvpdsample_clothingVALUES(10003,t-shirt,XYZ,summerstyle); commit; CREATETABLEvpdsample_books( book_idNUMBER, nameVARCHAR2(30), authorVARCHAR2(20) ); -- INSERTINTOvpdsample_booksVALUES(10005,CountryDriving,PeterHessler); INSERTINTOvpdsample_booksVALUES(10006,Lifewithoutlimits,NickVujicic); commit; 1.2.3.4.5.6.7.8.9.10.11.12.13.14.15.16.17.18.19.