Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Select does not support the quarter function
Message
 
 
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:
01121472
Views:
7
You cannot GROUP or ORDER on expression
	         group by taxliab.clientno, year, qtr, taxliab.duedate ;
	         order by taxliab.clientno, year, qtr, taxliab.duedate ;
>	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
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform