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

数据库系统

开发平台:

Unix_Linux

  1. QUERY: create table Room (
  2.     roomno char(8),
  3.     comment text
  4. );
  5. QUERY: create unique index Room_rno on Room using btree (roomno bpchar_ops);
  6. QUERY: create table WSlot (
  7.     slotname char(20),
  8.     roomno char(8),
  9.     slotlink char(20),
  10.     backlink char(20)
  11. );
  12. QUERY: create unique index WSlot_name on WSlot using btree (slotname bpchar_ops);
  13. QUERY: create table PField (
  14.     name text,
  15.     comment text
  16. );
  17. QUERY: create unique index PField_name on PField using btree (name text_ops);
  18. QUERY: create table PSlot (
  19.     slotname char(20),
  20.     pfname text,
  21.     slotlink char(20),
  22.     backlink char(20)
  23. );
  24. QUERY: create unique index PSlot_name on PSlot using btree (slotname bpchar_ops);
  25. QUERY: create table PLine (
  26.     slotname char(20),
  27.     phonenumber char(20),
  28.     comment text,
  29.     backlink char(20)
  30. );
  31. QUERY: create unique index PLine_name on PLine using btree (slotname bpchar_ops);
  32. QUERY: create table Hub (
  33.     name char(14),
  34.     comment text,
  35.     nslots integer
  36. );
  37. QUERY: create unique index Hub_name on Hub using btree (name bpchar_ops);
  38. QUERY: create table HSlot (
  39.     slotname char(20),
  40.     hubname char(14),
  41.     slotno integer,
  42.     slotlink char(20)
  43. );
  44. QUERY: create unique index HSlot_name on HSlot using btree (slotname bpchar_ops);
  45. QUERY: create index HSlot_hubname on HSlot using btree (hubname bpchar_ops);
  46. QUERY: create table System (
  47.     name text,
  48.     comment text
  49. );
  50. QUERY: create unique index System_name on System using btree (name text_ops);
  51. QUERY: create table IFace (
  52.     slotname char(20),
  53.     sysname text,
  54.     ifname text,
  55.     slotlink char(20)
  56. );
  57. QUERY: create unique index IFace_name on IFace using btree (slotname bpchar_ops);
  58. QUERY: create table PHone (
  59.     slotname char(20),
  60.     comment text,
  61.     slotlink char(20)
  62. );
  63. QUERY: create unique index PHone_name on PHone using btree (slotname bpchar_ops);