Author: phd
Date: 2004-12-14 20:47:30 +0000 (Tue, 14 Dec 2004)
New Revision: 484
Modified:
home/phd/SQLObject/inheritance/docs/Inheritance.txt
Log:
Fixed a minor bug in SELECT.
Modified: home/phd/SQLObject/inheritance/docs/Inheritance.txt
===================================================================
--- home/phd/SQLObject/inheritance/docs/Inheritance.txt 2004-12-14 15:29:52 UTC (rev 483)
+++ home/phd/SQLObject/inheritance/docs/Inheritance.txt 2004-12-14 20:47:30 UTC (rev 484)
@@ -106,7 +106,7 @@
'inherited' classes. These clauses are the link between the id and the
parent id. This will look like the following request::
- SELECT employee.id, employee.first_name, employee.last_name
+ SELECT employee.id, person.first_name, person.last_name
FROM person, employee WHERE person.first_name = 'Jane'
AND employee.position = 'Chief' AND person.id = employee.id
|