File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11<!--
2- $Header: /cvsroot/pgsql/doc/src/sgml/ref/create_rule.sgml,v 1.16 2000/05/20 11:38:25 momjian Exp $
2+ $Header: /cvsroot/pgsql/doc/src/sgml/ref/create_rule.sgml,v 1.17 2000/07/21 04:22:54 momjian Exp $
33Postgres documentation
44-->
55
@@ -302,7 +302,7 @@ CREATE RULE example_3 AS
302302 </programlisting>
303303 </para>
304304 <para>
305- Create a view of the employees working in the toy department.
305+ Create a view of the employees working in the toy department:
306306 <programlisting>
307307CREATE toyemp(name = char16, salary = int4);
308308
@@ -315,7 +315,7 @@ CREATE RULE example_4 AS
315315 </programlisting>
316316 </para>
317317 <para>
318- All new employees must make 5,000 or less
318+ All new employees must make 5,000 or less:
319319 <programlisting>
320320CREATE RULE example_5 AS
321321 ON INERT TO emp WHERE new.salary > 5000
Original file line number Diff line number Diff line change 11<!--
2- $Header: /cvsroot/pgsql/doc/src/sgml/ref/create_sequence.sgml,v 1.12 2000/05/08 16:19:56 thomas Exp $
2+ $Header: /cvsroot/pgsql/doc/src/sgml/ref/create_sequence.sgml,v 1.13 2000/07/21 04:25:05 momjian Exp $
33Postgres documentation
44-->
55
@@ -311,7 +311,7 @@ SELECT last_value FROM <replaceable>seqname</replaceable>;
311311CREATE SEQUENCE serial START 101;
312312 </programlisting>
313313 <para>
314- Select the next number from this sequence
314+ Select the next number from this sequence:
315315 <programlisting>
316316SELECT NEXTVAL ('serial');
317317
You can’t perform that action at this time.
0 commit comments