Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Select does not support the quarter function
Message
From
12/05/2006 15:44:39
 
 
To
12/05/2006 15:36:55
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Environment versions
Visual FoxPro:
VFP 9 SP1
OS:
Windows 2000 SP4
Network:
Windows 2000 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01121405
Message ID:
01121471
Views:
7
> select taxliab.clientno as clientno, ;
> YEAR(taxliab.chkdate) as year, QUARTER(taxliab.chkdate) as qtr, ;
> taxliab.duedate as duedate, ;
> sum(taxliab.amount-taxliab.credtaken-taxliab.removed) as amount, ;
> client.eftpscode as pin, client.fedid as fedid, ;
> lcfirsttaxtype as taxtype, lccode as code ;
> from taxliab, client ;
> where taxliab.clientno == client.clientno and ;
> taxliab.taxtype $ lctaxtype and ;
> taxliab.duedate < = lddate and ;
> taxliab.status == 'P' ;
> group by taxliab.clientno, YEAR(taxliab.chkdate), QUARTER(taxliab.chkdate), taxliab.duedate ;
> order by taxliab.clientno, YEAR(taxliab.chkdate), QUARTER(taxliab.chkdate), taxliab.duedate ;
> into cursor tcdata readwrite
>
>
>
>
>this does not work

You can't GROUP BY a function, you must group by a field name or an ordinal position. So you can't use the YEAR() function, either, you must create afield in your select that has the year in it.
Fred
Microsoft Visual FoxPro MVP

foxcentral.net
Previous
Reply
Map
View

Click here to load this message in the networking platform