Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
a521d5a2
Commit
a521d5a2
authored
Apr 11, 2002
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update obsolete syntax in example of inheritance.
parent
2dd06b05
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
src/tutorial/advanced.source
src/tutorial/advanced.source
+11
-11
No files found.
src/tutorial/advanced.source
View file @
a521d5a2
...
...
@@ -6,13 +6,13 @@
--
-- Copyright (c) 1994, Regents of the University of California
--
-- $Id: advanced.source,v 1.
4 2001/09/02 23:27:50 petere
Exp $
-- $Id: advanced.source,v 1.
5 2002/04/11 21:18:50 tgl
Exp $
--
---------------------------------------------------------------------------
-----------------------------
-- Inheritance:
--
S
table can inherit from zero or more tables. A query can reference
--
A
table can inherit from zero or more tables. A query can reference
-- either all rows of a table or all rows of a table plus all of its
-- descendants.
-----------------------------
...
...
@@ -41,19 +41,19 @@ INSERT INTO capitals VALUES ('Madison', 1.913E+5, 845, 'WI');
SELECT * FROM cities;
SELECT * FROM capitals;
-- like before, a regular query references rows of the base table only
SELECT name, altitude
FROM cities
WHERE altitude > 500;
-- on the other hand, you can find all cities, including capitals, that
-- are located at an altitude of 500 'ft or higher by:
-- You can find all cities, including capitals, that
-- are located at an altitude of 500 ft or higher by:
SELECT c.name, c.altitude
FROM cities
*
c
FROM cities c
WHERE c.altitude > 500;
-- To scan rows of the parent table only, use ONLY:
SELECT name, altitude
FROM ONLY cities
WHERE altitude > 500;
-- clean up (you must remove the children first)
DROP TABLE capitals;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment