Fix obsolete SQL syntax in comment.

This was legal back in the days of add_missing_from, though perhaps
never good style.  It's not legal anymore ...

Jan Urbański
This commit is contained in:
Tom Lane 2013-01-14 15:48:12 -05:00
parent 5c4eb9166e
commit 325c54b69c
1 changed files with 1 additions and 0 deletions

View File

@ -32,6 +32,7 @@
* the number of employees in that department. So we have the query:
*
* select DEPT.no_emps, EMP.age
* from DEPT, EMP
* where EMP.name = DEPT.mgr and
* DEPT.name = "shoe"
*