home *** CD-ROM | disk | FTP | other *** search
/ Datatid 1999 #6 / Datatid_1999-06.iso / internet / Tango352Promo / P.SQL / DOC / WESQL / SQLREF.CNT (.txt) next >
Encoding:
Microsoft Windows Help File Content  |  1998-08-10  |  6.9 KB  |  203 lines

  1. :Base sqlref.hlp
  2. :Title sqlref
  3. #{\footnote sqlref_cnt_1592} 
  4. {\fs18 Contents \par }
  5. 1 About This Manual
  6. 2 Who Should Read This Manual=about_rtf_4594
  7. 2 Manual Organization=about_rtf_4449
  8. 2 Conventions=about_rtf_3813
  9. 1  1 SQL Overview
  10. 2 Data Definition Statements
  11. 3 Creating and Deleting Dictionaries=sqlintro_rtf_7475
  12. 3 Creating, Modifying, and Deleting Tables=sqlintro_rtf_3573
  13. 3 Defining Column Attributes=sqlintro_rtf_3588
  14. 3 Creating and Deleting Indexes=sqlintro_rtf_3619
  15. 3 Creating and Deleting Triggers=sqlintro_rtf_5601
  16. 2 Data Manipulation Statements
  17. 3 Retrieving Data=sqlintro_rtf_3649
  18. 3 Modifying Data=sqlintro_rtf_3686
  19. 3 Defining Transactions=sqlintro_rtf_3703
  20. 3 Creating and Deleting Views=sqlintro_rtf_3723
  21. 3 Creating, Deleting, and Executing Stored Procedures=sqlintro_rtf_3734
  22. 2 Data Control Statements
  23. 3 Enabling and Disabling Security=sqlintro_rtf_3769
  24. 3 Creating and Deleting Users and Groups=sqlintro_rtf_3777
  25. 3 Granting and Revoking Rights=sqlintro_rtf_3797
  26. 2 Data Administration Statements=sqlintro_rtf_3819
  27. 2 Data File Paths
  28. 3 Database Names=sqlintro_rtf_4396
  29. 3 Path Strings=sqlintro_rtf_4410
  30. 1  2 Scalable SQL Syntax
  31. 2 Comments in SQL Statements=sqlsyntx_rtf_36452
  32. 2 ALTER TABLE
  33. 3 IN DICTIONARY=sqlsyntx_rtf_1985
  34. 3 USING=sqlsyntx_rtf_1989
  35. 3 WITH REPLACE=sqlsyntx_rtf_2081
  36. 3 ADD=sqlsyntx_rtf_1997
  37. 3 MODIFY=sqlsyntx_rtf_2023
  38. 3 DROP=sqlsyntx_rtf_15674
  39. 2 BEGIN...END (compound statement)
  40. 3 Rules for Creating Compound Statements=sqlsyntx_rtf_12548
  41. 2 CALL
  42. 3 Rules for Using the CALL Statement=sqlsyntx_rtf_10757
  43. 2 CLOSE (cursor)=sqlsyntx_rtf_6626
  44. 2 COMMIT WORK
  45. 3 Rules for Using the COMMIT WORK Statement=sqlsyntx_rtf_7083
  46. 2 CREATE DICTIONARY=sqlsyntx_rtf_6589
  47. 2 CREATE GROUP=sqlsyntx_rtf_2061
  48. 2 CREATE INDEX
  49. 3 Index Columns and Attributes=sqlsyntx_rtf_2085
  50. 3 Alternate Collating Sequence=sqlsyntx_rtf_2094
  51. 2 CREATE PROCEDURE
  52. 3 Rules for Creating Stored Procedures=sqlsyntx_rtf_5588
  53. 3 Parameters of Stored Procedures=sqlsyntx_rtf_33681
  54. 2 CREATE TABLE
  55. 3 Defining the Data File Location=sqlsyntx_rtf_12870
  56. 3 Specifying Data File Options=sqlsyntx_rtf_2226
  57. 3 WITH REPLACE=sqlsyntx_rtf_2241
  58. 3 Defining Columns=sqlsyntx_rtf_2245
  59. 3 Defining the Primary Key=sqlsyntx_rtf_2261
  60. 3 Defining Foreign Keys=sqlsyntx_rtf_2267
  61. 3 Defining Indexes=sqlsyntx_rtf_2287
  62. 2 CREATE TRIGGER
  63. 3 Rules for Creating Triggers=sqlsyntx_rtf_12664
  64. 3 Invoking a Trigger=sqlsyntx_rtf_14915
  65. 3 Examples=sqlsyntx_rtf_20712
  66. 2 CREATE VIEW
  67. 3 Column Headings=sqlsyntx_rtf_2328
  68. 3 ReadOnly Views=sqlsyntx_rtf_2333
  69. 2 DECLARE (variable)
  70. 3 Rules for Declaring a SQL Variable=sqlsyntx_rtf_11017
  71. 2 DECLARE CONDITION
  72. 3 Rules for Declaring Conditions=sqlsyntx_rtf_10528
  73. 2 DECLARE CURSOR
  74. 3 Rules for Declaring Cursors=sqlsyntx_rtf_11146
  75. 2 DECLARE HANDLER
  76. 3 Rules for Declaring Handlers=sqlsyntx_rtf_10545
  77. 2 DELETE=sqlsyntx_rtf_6368
  78. 2 DELETE: positioned
  79. 3 Rules for Using the Positioned DELETE Statement=sqlsyntx_rtf_11589
  80. 2 DROP DICTIONARY=sqlsyntx_rtf_6373
  81. 2 DROP GROUP=sqlsyntx_rtf_2365
  82. 2 DROP INDEX=sqlsyntx_rtf_2373
  83. 2 DROP PROCEDURE=sqlsyntx_rtf_2384
  84. 2 DROP TABLE=sqlsyntx_rtf_2392
  85. 2 DROP TRIGGER=sqlsyntx_rtf_2402
  86. 2 DROP VIEW=sqlsyntx_rtf_7020
  87. 2 FETCH
  88. 3 Rules for Using the FETCH Statement=sqlsyntx_rtf_11399
  89. 2 GRANT (access rights)
  90. 3 All Right=sqlsyntx_rtf_2447
  91. 3 Insert Right=sqlsyntx_rtf_2450
  92. 3 Delete Right=sqlsyntx_rtf_2456
  93. 3 Alter Right=sqlsyntx_rtf_2459
  94. 3 References Right=sqlsyntx_rtf_2464
  95. 3 Select Right=sqlsyntx_rtf_2469
  96. 3 Update Right=sqlsyntx_rtf_2476
  97. 2 GRANT CREATETAB=sqlsyntx_rtf_2482
  98. 2 GRANT LOGIN=sqlsyntx_rtf_2493
  99. 2 IF=sqlsyntx_rtf_6679
  100. 2 INSERT
  101. 3 VALUES Clause=sqlsyntx_rtf_2523
  102. 3 SELECT Clause=sqlsyntx_rtf_13168
  103. 2 LEAVE
  104. 3 Rules for Using the LEAVE Statement=sqlsyntx_rtf_6739
  105. 2 LOOP=sqlsyntx_rtf_6716
  106. 2 OPEN (cursor)
  107. 3 Rules for Opening a Cursor=sqlsyntx_rtf_6159
  108. 2 RELEASE SAVEPOINT=sqlsyntx_rtf_7061
  109. 2 RESIGNAL
  110. 3 Rules for Using the RESIGNAL Statement=sqlsyntx_rtf_10604
  111. 2 REVOKE (access rights)=sqlsyntx_rtf_6095
  112. 2 REVOKE CREATETAB=sqlsyntx_rtf_2563
  113. 2 REVOKE LOGIN=sqlsyntx_rtf_2570
  114. 2 ROLLBACK WORK
  115. 3 Rules for Using the ROLLBACK WORK Statement=sqlsyntx_rtf_7087
  116. 2 SAVEPOINT
  117. 3 Rules for Creating Savepoints=sqlsyntx_rtf_7048
  118. 2 SELECT
  119. 3 DISTINCT=sqlsyntx_rtf_2600
  120. 3 Select List=sqlsyntx_rtf_31252
  121. 3 AS=sqlsyntx_rtf_31846
  122. 3 FROM=sqlsyntx_rtf_31900
  123. 3 WHERE=sqlsyntx_rtf_2619
  124. 3 GROUP BY=sqlsyntx_rtf_2695
  125. 3 HAVING=sqlsyntx_rtf_13976
  126. 3 ORDER BY=sqlsyntx_rtf_2733
  127. 3 Group Aggregate Functions=sqlsyntx_rtf_2765
  128. 3 Combining Multiple Queries with UNION=sqlsyntx_rtf_2808
  129. 3 Read-Only Views=sqlsyntx_rtf_24918
  130. 2 SET=sqlsyntx_rtf_2920
  131. 2 SET CHAR=sqlsyntx_rtf_2930
  132. 2 SET DATAPATH=sqlsyntx_rtf_2940
  133. 2 SET DATEFORMAT=sqlsyntx_rtf_21060
  134. 2 SET DEFAULT=sqlsyntx_rtf_31698
  135. 2 SET (global null value)=sqlsyntx_rtf_2950
  136. 2 SET ISOLATION=sqlsyntx_rtf_2962
  137. 2 SET MASK=sqlsyntx_rtf_31194
  138. 2 SET OPENMODE
  139. 3 Normal Mode=sqlsyntx_rtf_2997
  140. 3 Accelerated Mode=sqlsyntx_rtf_2998
  141. 3 ReadOnly Mode=sqlsyntx_rtf_21133
  142. 3 Verify Mode=sqlsyntx_rtf_3004
  143. 3 Exclusive Mode=sqlsyntx_rtf_3006
  144. 2 SET OWNER=sqlsyntx_rtf_3011
  145. 2 SET RANGE=sqlsyntx_rtf_3021
  146. 2 SET SECURITY=sqlsyntx_rtf_3032
  147. 2 SET VALUES=sqlsyntx_rtf_3042
  148. 2 SIGNAL
  149. 3 Rules for Using the SIGNAL Statement=sqlsyntx_rtf_11369
  150. 2 START TRANSACTION=sqlsyntx_rtf_3052
  151. 2 UPDATE
  152. 3 Specifying Data Values Directly=sqlsyntx_rtf_3077
  153. 3 Extracting Data Values with a SELECT Clause=sqlsyntx_rtf_3091
  154. 2 UPDATE: positioned
  155. 3 Rules for Using the Positioned UPDATE Statement=sqlsyntx_rtf_6493
  156. 2 WHILE=sqlsyntx_rtf_6444
  157. 1  A Data Types
  158. 2 FixedLength Data Types
  159. 3 AUTOINC=sqldtype_rtf_3087
  160. 3 BFLOAT=sqldtype_rtf_4101
  161. 3 BIT=sqldtype_rtf_3113
  162. 3 CHARACTER=sqldtype_rtf_3124
  163. 3 CURRENCY=sqldtype_rtf_4035
  164. 3 DATE=sqldtype_rtf_4021
  165. 3 DECIMAL=sqldtype_rtf_11941
  166. 3 FLOAT=sqldtype_rtf_3173
  167. 3 INTEGER=sqldtype_rtf_3189
  168. 3 LOGICAL=sqldtype_rtf_3196
  169. 3 LSTRING=sqldtype_rtf_3199
  170. 3 MONEY=sqldtype_rtf_3212
  171. 3 NUMERIC=sqldtype_rtf_12282
  172. 3 NUMERICSA=sqldtype_rtf_3321
  173. 3 NUMERICSTS=sqldtype_rtf_3387
  174. 3 TIME=sqldtype_rtf_3403
  175. 3 TIMESTAMP=sqldtype_rtf_4082
  176. 3 UNSIGNED=sqldtype_rtf_4061
  177. 3 ZSTRING=sqldtype_rtf_4936
  178. 2 VariableLength Data Types
  179. 3 LVAR=sqldtype_rtf_3442
  180. 3 NOTE=sqldtype_rtf_11463
  181. 1  B Scalable SQL Keywords
  182. 2 List of Keywords=sqlkword_rtf_9248
  183. 1  C System Tables
  184. 2 Installing System Tables and Data Dictionary Files=sqlsystb_rtf_3207
  185. 2 X$File=sqlsystb_rtf_3216
  186. 2 X$Field=sqlsystb_rtf_3317
  187. 2 X$Index=sqlsystb_rtf_3519
  188. 2 X$Attrib=sqlsystb_rtf_3716
  189. 2 X$View=sqlsystb_rtf_3807
  190. 2 X$Proc=sqlsystb_rtf_3898
  191. 2 X$User=sqlsystb_rtf_3993
  192. 2 X$Rights=sqlsystb_rtf_4147
  193. 2 X$Relate=sqlsystb_rtf_4349
  194. 2 X$Trigger=sqlsystb_rtf_821
  195. 2 X$Depend=sqlsystb_rtf_6356
  196. 1  D SQLSTATE Classes and Values
  197. 2 Example Use of SQLSTATE=sqlstate_rtf_17766
  198. 2 Types of SQLSTATE Values=sqlstate_rtf_17758
  199. 2 SQLSTATE Classes=sqlstate_rtf_23070
  200. 2 SQLSTATE Subclasses=sqlstate_rtf_23667
  201. 2 Application-Defined SQLSTATE Values=sqlstate_rtf_23740
  202. 2 SQLSTATE Values=sqlstate_rtf_17444
  203.