File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
<!--
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 $
3
3
Postgres documentation
4
4
-->
5
5
@@ -302,7 +302,7 @@ CREATE RULE example_3 AS
302
302
</programlisting>
303
303
</para>
304
304
<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:
306
306
<programlisting>
307
307
CREATE toyemp(name = char16, salary = int4);
308
308
@@ -315,7 +315,7 @@ CREATE RULE example_4 AS
315
315
</programlisting>
316
316
</para>
317
317
<para>
318
- All new employees must make 5,000 or less
318
+ All new employees must make 5,000 or less:
319
319
<programlisting>
320
320
CREATE RULE example_5 AS
321
321
ON INERT TO emp WHERE new.salary > 5000
Original file line number Diff line number Diff line change 1
1
<!--
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 $
3
3
Postgres documentation
4
4
-->
5
5
@@ -311,7 +311,7 @@ SELECT last_value FROM <replaceable>seqname</replaceable>;
311
311
CREATE SEQUENCE serial START 101;
312
312
</programlisting>
313
313
<para>
314
- Select the next number from this sequence
314
+ Select the next number from this sequence:
315
315
<programlisting>
316
316
SELECT NEXTVAL ('serial');
317
317
You can’t perform that action at this time.
0 commit comments