Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL SELECT problem
Message
From
16/09/2005 20:23:53
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 6 SP3
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01050520
Message ID:
01050531
Views:
8
Sergey,

Thanks so much for the quick response. It was the FROM clause that was causing the problem, it works great now. I appreciate your help.

Regards, Peter

>SELECT invoice.inv_date, invoice.job_no, invoice.inv_no, ;
> invoice.cust_no, jobs.csr_init, jobs.total_frames, ;
> customer.company, customer.firstname, customer.lastname, ;
> FROM invoice ;
> INNER JOIN customer on customer.cust_no = invoice.cust_no ;
> INNER JOIN jobs ON jobs.job_no = invoice.job_no ;
> WHERE invoice.inv_date BETWEEN from_date AND to_date ;
> ORDER BY jobs.csr_init, invoice.inv_date ;
> INTO CURSOR csr_detl
>Notice that only one table is used in FROM clause because the rest are JOINed to it. I also remove GROUP BY clause because there're no aggregate functions used.
>
>
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform