一.type / create or repalce type 区别联系 相同: 可用关键字create type 或者直接用type定义自定义类型, 区别: create type 变量 as table of 类型 -- create type 变量 as object( 字段1 类型1, 字段2 类型2 ); -------------------------- type 变量 is table of 类型 -- type 变量 is record( 字段1 类型1, 字段2 类型2 );