PRB: View Designer Rewrites WHERE Clause

ID: Q164369


The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, versions 3.0, 3.0b, 5.0, 6.0


SYMPTOMS

When a local SQL view is created from a CREATE SQL VIEW command with SELECT - SQL statement, the parenthetical WHERE clause is rewritten in View Designer.


CAUSE

According to the SQL lexicon, there is no parentheses support in SQL.


RESOLUTION

In View Designer, the parenthetical HAVING clause is parsed correctly. Since HAVING sets conditions for the GROUP BY clause similarly to the way that WHERE sets conditions for the SELECT clause; and HAVING without GROUP BY has the same filtering effect as WHERE. The workaround for this problem is to replace WHERE clause with HAVING, whenever it is applicable.


STATUS

This behavior is by design. The view designer was not built to handle parenthetical WHERE clauses.


MORE INFORMATION

Steps to Reproduce Behavior

  1. Open Tastrade sample project and database.


  2. At the Command window, issue the following command:
    
          CREATE SQL View Test1 AS ;
            SELECT * FROM customer ;
            WHERE (customer.country = "USA"  OR customer.country = "Mexico") ;
                 AND max_order_amt > 10000 


  3. Open View Designer to modify view Test1.


  4. Select "View SQL" under Query menu. The SQL code is rewritten as the following. Note that the WHERE clause is wrongly parsed:
    
          SELECT *;
          FROM tastrade!customer;
          WHERE customer.country = "USA";
          OR (customer.country = "Mexico";
          AND customer.max_order_amt > 10000) 


However, at step 2, if you replace WHERE with HAVING, the View Designer parses the SQL statement correctly.

Additional query words:

Keywords : kbVFp kbVFp300 kbVFp300b kbVFp500 kbVFp600 FxprgSql
Version : WINDOWS:3.0,3.0b,5.0,6.0
Platform : WINDOWS
Issue type : kbprb


Last Reviewed: February 3, 2000
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.