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

数据库系统

开发平台:

Unix_Linux

  1. QUERY: CREATE TABLE hobbies_r (
  2. name text,
  3. person  text
  4. );
  5. QUERY: CREATE TABLE equipment_r (
  6. name  text,
  7. hobby text
  8. );
  9. QUERY: CREATE TABLE onek (
  10. unique1 int4,
  11. unique2 int4,
  12. two int4,
  13. four int4,
  14. ten int4,
  15. twenty int4,
  16. hundred int4,
  17. thousand int4,
  18. twothousand int4,
  19. fivethous int4,
  20. tenthous int4,
  21. odd int4,
  22. even int4,
  23. stringu1 name,
  24. stringu2 name,
  25. string4 name
  26. );
  27. QUERY: CREATE TABLE tenk1 (
  28. unique1 int4,
  29. unique2 int4,
  30. two int4,
  31. four int4,
  32. ten int4,
  33. twenty int4,
  34. hundred int4,
  35. thousand int4,
  36. twothousand int4,
  37. fivethous int4,
  38. tenthous int4,
  39. odd int4,
  40. even int4,
  41. stringu1 name,
  42. stringu2 name,
  43. string4 name
  44. );
  45. QUERY: CREATE TABLE tenk2 (
  46. unique1  int4,
  47. unique2  int4,
  48. two    int4,
  49. four  int4,
  50. ten int4,
  51. twenty  int4,
  52. hundred  int4,
  53. thousand  int4,
  54. twothousand  int4,
  55. fivethous  int4,
  56. tenthous int4,
  57. odd int4,
  58. even int4,
  59. stringu1 name,
  60. stringu2 name,
  61. string4 name
  62. );
  63. QUERY: CREATE TABLE person (
  64. name  text,
  65. age int4,
  66. location  point
  67. );
  68. QUERY: CREATE TABLE emp (
  69. salary  int4,
  70. manager  name
  71. ) INHERITS (person);
  72. QUERY: CREATE TABLE student (
  73. gpa  float8
  74. ) INHERITS (person);
  75. QUERY: CREATE TABLE stud_emp (
  76. percent  int4
  77. ) INHERITS (emp, student);
  78. QUERY: CREATE TABLE city (
  79. name name,
  80. location  box,
  81. budget  city_budget
  82. );
  83. QUERY: CREATE TABLE dept (
  84. dname name,
  85. mgrname  text
  86. );
  87. QUERY: CREATE TABLE slow_emp4000 (
  88. home_base  box
  89. );
  90. QUERY: CREATE TABLE fast_emp4000 (
  91. home_base  box
  92. );
  93. QUERY: CREATE TABLE road (
  94. name text,
  95. thepath  path
  96. );
  97. QUERY: CREATE TABLE ihighway () INHERITS (road);
  98. QUERY: CREATE TABLE shighway (
  99. surface text
  100. ) INHERITS (road);
  101. QUERY: CREATE TABLE real_city (
  102. pop int4,
  103. cname text,
  104. outline  path
  105. );
  106. QUERY: CREATE TABLE a_star (
  107. class char,
  108. a  int4
  109. );
  110. QUERY: CREATE TABLE b_star (
  111. b  text
  112. ) INHERITS (a_star);
  113. QUERY: CREATE TABLE c_star (
  114. c  name
  115. ) INHERITS (a_star);
  116. QUERY: CREATE TABLE d_star (
  117. d  float8
  118. ) INHERITS (b_star, c_star);
  119. QUERY: CREATE TABLE e_star (
  120. e  int2
  121. ) INHERITS (c_star);
  122. QUERY: CREATE TABLE f_star (
  123. f  polygon
  124. ) INHERITS (e_star);
  125. QUERY: CREATE TABLE aggtest (
  126. a  int2,
  127. b float4
  128. );
  129. QUERY: CREATE TABLE arrtest (
  130. a  int2[],
  131. b  int4[][][],
  132. c  name[],
  133. d text[][],
  134. e  float8[],
  135. f char(5)[],
  136. g varchar(5)[]
  137. );
  138. QUERY: CREATE TABLE hash_i4_heap (
  139. seqno  int4,
  140. random  int4
  141. );
  142. QUERY: CREATE TABLE hash_name_heap (
  143. seqno  int4,
  144. random  name
  145. );
  146. QUERY: CREATE TABLE hash_txt_heap (
  147. seqno  int4,
  148. random  text
  149. );
  150. QUERY: CREATE TABLE hash_f8_heap (
  151. seqno int4,
  152. random  float8
  153. );
  154. QUERY: CREATE TABLE bt_i4_heap (
  155. seqno  int4,
  156. random  int4
  157. );
  158. QUERY: CREATE TABLE bt_name_heap (
  159. seqno  name,
  160. random  int4
  161. );
  162. QUERY: CREATE TABLE bt_txt_heap (
  163. seqno  text,
  164. random  int4
  165. );
  166. QUERY: CREATE TABLE bt_f8_heap (
  167. seqno  float8,
  168. random  int4
  169. );