Microsoft Windows XP [版本 5.1.2600]
(C) 版权所有 1985-2001 Microsoft Corp.C:\Documents and Settings\chanet>cd\C:\>sqlplus /nologSQL*Plus: Release 9.2.0.1.0 - Production on 星期二 10月 18 23:24:34 2005Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.SQL> conn scott/tiger@oradb
已连接。
SQL> create or replace type address
  2  as object
  3  (
  4     pronvice varchar(20),
  5     city varchar(30),
  6     detail varchar(40)
  7  );
  8  /类型已创建。已用时间:  00: 00: 00.02
SQL> drop type address;类型已丢弃。已用时间:  00: 00: 00.00
SQL>