Using Compute within Select Not Allowed in Q+ELast reviewed: October 31, 1994Article ID: Q45978 |
SUMMARYSome implementations of SQL allow Compute to be used in the following fashion:
SELECT FIRST_NAME, LAST_NAME, COMPUTE MAX(SALARY) FROM EMP.DBFQ+E's implementation of SQL does not allow this. If the above is entered, the following error message will be displayed:
Missing SQL clause: FromThe correct SQL implementation in Q+E is the following:
SELECT FIRST_NAME, LAST_NAME, SALARY FROM EMP.DBF COMPUTE MAX(SALARY) |
KBCategory: kbother
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |