Re: Queries of this type are not supported
From: Fred Taylor (ftaylor_at_mvps.org!REMOVE)
Date: 08/06/04
- Next message: Anders: "Re: Queries of this type are not supported"
- Previous message: Jane: "Queries of this type are not supported"
- In reply to: Jane: "Queries of this type are not supported"
- Next in thread: Anders: "Re: Queries of this type are not supported"
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 5 Aug 2004 22:17:55 -0700
Try this:
SELECT Endorsement.*, Repercentage.*;
FROM endorsement, repercentage;
WHERE Repercentage.rp_number = endorsement.en_renumber ;
AND Repercentage.rp_effectivedate IN ;
(SELECT max (rp.rp_effectivedate)
;
FROM
Repercentage rp, Endorsement ed ;
WHERE
Ed.en_renumber = rp.rp_number;
AND rp.rp_effectivedate <= ed.en_startdate);
Fred
Microsoft Visual FoxPro MVP
"Jane" <Jane@discussions.microsoft.com> wrote in message
news:26A4343A-12D6-45EC-993A-8F282A2763D2@microsoft.com...
> Hi there,
>
> I have a query, when I test it in the command window, I get the error
> message: Queries of this type are not supported. My query is:
> SELECT Endorsement.*, Repercentage.*;
> FROM endorsement, repercentage;
> WHERE Repercentage.rp_number = endorsement.en_renumber ;
> AND Repercentage.rp_effectivedate = (SELECT max(rp.rp_effectivedate) FROM
> Repercentage rp;
> WHERE Endorsement.en_renumber =
> rp.rp_number;
> AND rp.rp_effectivedate <=
> Endorsement.en_startdate);
>
> What can I do? It's urgent, I have to finish it as soon as possible.
Thanks
> in advance!
> Cheers
> Jane
>
- Next message: Anders: "Re: Queries of this type are not supported"
- Previous message: Jane: "Queries of this type are not supported"
- In reply to: Jane: "Queries of this type are not supported"
- Next in thread: Anders: "Re: Queries of this type are not supported"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|