Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Any ideas on speeding up this query
Message
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
01284133
Message ID:
01284186
Views:
18
Do you have an index on ordsize.orderprodid?

>Naomi, I've tried the following:
>SELECT Ordsize.orderprodid,;
>  SUM(Ordsize.ordered) AS totordered,;
>  SUM(Ordsize.allocated) AS totallocated,;
>  SUM(Ordsize.shipped) AS totshipped;
> FROM ordsize ;
> GROUP BY ordsize.orderprodid
>The SYS(3054,11) Result is:
>Rushmore... NONE
>
>Then I tried, as per your suggestion:
>SELECT Ordprod.orderid, Ordsize.orderprodid,;
>  SUM(Ordsize.ordered) AS totordered,;
>  SUM(Ordsize.allocated) AS totallocated,;
>  SUM(Ordsize.shipped) AS totshipped;
> FROM ;
>     Ordsize ;
>    INNER JOIN ordprod ;
>   ON  Ordprod.orderprodid = Ordsize.orderprodid ;
> GROUP BY Ordsize.orderprodid, Ordprod.orderid
>Again the SYS(3054,11) Result is:
>NONE for both tables.
Previous
Reply
Map
View

Click here to load this message in the networking platform