create_type.sql
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:0k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. --
  2. -- create.source
  3. --
  4. --
  5. CREATE TYPE widget (
  6.    internallength = 24, 
  7.    input = widget_in,
  8.    output = widget_out,
  9.    alignment = double
  10. );
  11. CREATE TYPE city_budget ( 
  12.    internallength = 16, 
  13.    input = int44in, 
  14.    output = int44out, 
  15.    element = int4
  16. );