? config.log
? config.cache
? config.status
? GNUmakefile
? src/Makefile.custom
? src/GNUmakefile
? src/Makefile.global
? src/log
? src/crtags
? src/backend/port/Makefile
? src/include/config.h
? src/include/stamp-h
Index: doc/src/sgml/sql.sgml
===================================================================
RCS file: /home/projects/pgsql/cvsroot/pgsql/doc/src/sgml/sql.sgml,v
retrieving revision 1.13
diff -c -r1.13 sql.sgml
*** doc/src/sgml/sql.sgml	2000/11/29 20:15:59	1.13
--- doc/src/sgml/sql.sgml	2000/12/09 22:57:43
***************
*** 934,940 ****
  SELECT PNAME, PRICE 
      FROM PART
      WHERE PNAME = 'Bolt' AND
!          (PRICE = 0 OR PRICE < 15);
  	</programlisting>
  
  	will lead to the result:
--- 934,940 ----
  SELECT PNAME, PRICE 
      FROM PART
      WHERE PNAME = 'Bolt' AND
!          (PRICE = 0 OR PRICE <= 15);
  	</programlisting>
  
  	will lead to the result:
***************
*** 1350,1356 ****
      INTERSECT
      SELECT S.SNO, S.SNAME, S.CITY
      FROM SUPPLIER S
!     WHERE S.SNO > 2;
  	</programlisting>
  
  	gives the result:
--- 1350,1356 ----
      INTERSECT
      SELECT S.SNO, S.SNAME, S.CITY
      FROM SUPPLIER S
!     WHERE S.SNO < 3;
  	</programlisting>
  
  	gives the result:
***************
*** 1624,1630 ****
  
        <programlisting>
  SELECT * FROM London_Suppliers
!     WHERE P.PNAME = 'Screw';
        </programlisting>
  
        which will return the following table:
--- 1624,1630 ----
  
        <programlisting>
  SELECT * FROM London_Suppliers
!     WHERE PNAME = 'Screw';
        </programlisting>
  
        which will return the following table:
