Q+E Version 2.50 Supports the Keyword DISTINCTLast reviewed: November 2, 1994Article ID: Q67509 |
SUMMARYMicrosoft Q+E supports the keyword DISTINCT when querying SQL Server tables only. Q+E returns the error "SELECT DISTINCT is not supported" if you use DISTINCT with text or dBASE compatible files. DISTINCT is used to eliminate multiple instances of identical records. DISTINCT is not available as a menu option; however, you can add it to the SQL query text.
MORE INFORMATIONTo add the keyword DISTINCT, use the following steps:
Original Query
SELECT last_name, first_name, hire_date FROM janitors After Modification
SELECT DISTINCT last_name, first_name, hire_date FROM janitors |
KBCategory: kbother
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |