File tree Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 1
1
.\" This is -*-nroff-*-
2
2
.\" XXX standard disclaimer belongs here....
3
- .\" $Header: /cvsroot/pgsql/src/man/Attic/create_table.l,v 1.6 1997/09/26 15:21:27 thomas Exp $
3
+ .\" $Header: /cvsroot/pgsql/src/man/Attic/create_table.l,v 1.7 1997/09/27 03:14:17 momjian Exp $
4
4
.TH "CREATE TABLE" SQL 09/25/97 PostgreSQL
5
5
.SH NAME
6
6
create table \(em create a new class
7
7
.SH SYNOPSIS
8
8
.nf
9
- \fB create table \fR classname \fB ( \fP attname type [\fB default \fP value] [\fB , \fP attname type \fB default \fP value]\fB ) \fP
9
+ \fB create table \fR classname \fB ( \fP attname type [\fB default \fP value]
10
+ [\fB , \fP attname type \fB default \fP value]\fB ) \fP
10
11
[\fB inherits \fR \fB ( \fR classname [\fB , \fR classname] \fB ) \fR ]
11
12
[\fB constraint \fR cname \fB check \fR \fB ( \fR test \fB ) \fR [\fB , \fR \fB check \fR test]
12
13
[\fB archive \fR \fB = \fR archive_mode]
Original file line number Diff line number Diff line change 1
1
.\" This is -*-nroff-*-
2
2
.\" XXX standard disclaimer belongs here....
3
- .\" $Header: /cvsroot/pgsql/src/man/Attic/insert.l,v 1.4 1997/08/26 17:39:31 momjian Exp $
3
+ .\" $Header: /cvsroot/pgsql/src/man/Attic/insert.l,v 1.5 1997/09/27 03:14:19 momjian Exp $
4
4
.TH INSERT SQL 11/05/95 PostgreSQL PostgreSQL
5
5
.SH NAME
6
6
insert \(em insert tuples to a relation
7
7
.SH SYNOPSIS
8
8
.nf
9
9
\fB insert \fR into classname
10
- [(att.expr-1,{ att_expr.i} )]
11
- {\fB values \fR (expression1 { ,expression-i} ) |
12
- \fB select \fR expression1,{ expression-i}
10
+ [(att.expr-1 [, att_expr.i] )]
11
+ {\fB values \fR (expression1 [ ,expression-i] ) |
12
+ \fB select \fR expression1 [, expression-i]
13
13
[\fB from \fR from-list] [\fB where \fR qual]
14
14
.fi
15
15
.SH DESCRIPTION
Original file line number Diff line number Diff line change 1
1
.\" This is -*-nroff-*-
2
2
.\" XXX standard disclaimer belongs here....
3
- .\" $Header: /cvsroot/pgsql/src/man/Attic/update.l,v 1.2 1996/12/11 00:28:13 momjian Exp $
3
+ .\" $Header: /cvsroot/pgsql/src/man/Attic/update.l,v 1.3 1997/09/27 03:14:20 momjian Exp $
4
4
.TH UPDATE SQL 11/05/95 PostgreSQL PostgreSQL
5
5
.SH NAME
6
6
update \(em replace values of attributes in a class
7
7
.SH SYNOPSIS
8
8
.nf
9
- \fB update \fR classname \fB set \fR attname-1 = expression-1,
10
- { attname-i = expression-i}
9
+ \fB update \fR classname \fB set \fR attname-1 = expression-1
10
+ [, attname-i = expression-i]
11
11
[\fB from \fR from-list]
12
12
[\fB where \fR qual]
13
13
.fi
You can’t perform that action at this time.
0 commit comments