Cleanup
authorBruce Momjian
Fri, 21 Jul 2000 04:25:05 +0000 (04:25 +0000)
committerBruce Momjian
Fri, 21 Jul 2000 04:25:05 +0000 (04:25 +0000)
doc/src/sgml/ref/create_rule.sgml
doc/src/sgml/ref/create_sequence.sgml

index 8938fc6e379e9121b7670c23e4ef1bbbe79221a3..e8be38230450a2e2637b64d8a0f478a5e32d0c7a 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -302,7 +302,7 @@ CREATE RULE example_3 AS
    
   
   
-   Create a view of the employees working in the toy department.
+   Create a view of the employees working in the toy department:
    
 CREATE toyemp(name = char16, salary = int4);
 
@@ -315,7 +315,7 @@ CREATE RULE example_4 AS
    
   
   
-   All new employees must make 5,000 or less
+   All new employees must make 5,000 or less:
    
 CREATE RULE example_5 AS
     ON INERT TO emp WHERE new.salary > 5000
index b72a213e7e387863c21c255a622e2d2b8a950747..00e90009488f8aaf41d31ce0e0da0e0bbe62113a 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -311,7 +311,7 @@ SELECT last_value FROM seqname;
 CREATE SEQUENCE serial START 101;
   
   
-   Select the next number from this sequence
+   Select the next number from this sequence:
    
 SELECT NEXTVAL ('serial');