RE: Subquery help
- From: KARL DEWEY <KARLDEWEY@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Mon, 9 Nov 2009 14:22:01 -0800
Subqueries do not have semicolons. A query, no matter what kind only hasNo, it wasn't a typo.
one semicolon and that is at the very end of the SQL statement.
Did you try the 'IN' function as suggested --
WHERE (((UKL_OWNER_REJECTED_METER_RD.MPO_REFERENCE) IN (SELECT
Trim(Str([UKL_OWNER_METER_POINT]![.......
--
Build a little, test a little.
"FBxiii" wrote:
No, it wasn't a typo. I have removed it and got the same error so I am now.
trying the In method (no error as yet).
I shall await in anticipation of a result and confirm the outcome :-)
Thanks for the prompt response.
Steve.
"Jerry Whittle" wrote:
Unless it's just a typo, what you show below has too many semicolons. You
shouldn't need one in the subquery.
After that I'd try changing the = to an IN statement.
--
Jerry Whittle, Microsoft Access MVP
Light. Strong. Cheap. Pick two. Keith Bontrager - Bicycle Builder.
"FBxiii" wrote:
Hi.
I am trying to run a query, but am getting a 'At most one record can be
returned by this subquery' error.
I have used subqueries before but have never seen this message.
The query should be bringing back multiple references between the specified
date ranges. Can anyone advise how to get round this? A further problem is
conflicting data-types within the database, but I have no control over this.
My query is:
SELECT UKL_OWNER_REJECTED_METER_RD.MPO_REFERENCE,
UKL_OWNER_REJECTED_METER_RD.ACTUAL_READ_DATE,
UKL_OWNER_REJECTED_METER_RD.METER_INDEX, UKL_OWNER_ORGANISATION.SHORT_CODE
FROM UKL_OWNER_REJECTED_METER_RD INNER JOIN UKL_OWNER_ORGANISATION ON
UKL_OWNER_REJECTED_METER_RD.ORG_ID = UKL_OWNER_ORGANISATION.ORG_ID
WHERE (((UKL_OWNER_REJECTED_METER_RD.MPO_REFERENCE)=
(SELECT Trim(Str([UKL_OWNER_METER_POINT]![MPO_REFERENCE])) FROM
UKL_OWNER_METER_POINT WHERE (((UKL_OWNER_METER_POINT.STATUS_CODE) Not In
("DE","EX")) AND ((UKL_OWNER_METER_POINT.CMPTTN_EFCTV_DATE) Between
#5/1/2008# And #8/31/2008#));)
));
Thanks,
Steve.
- Follow-Ups:
- RE: Subquery help
- From: FBxiii
- RE: Subquery help
- References:
- Subquery help
- From: FBxiii
- RE: Subquery help
- From: Jerry Whittle
- RE: Subquery help
- From: FBxiii
- Subquery help
- Prev by Date: RE: Problem with Expression
- Next by Date: RE: Create update query for remaining records
- Previous by thread: RE: Subquery help
- Next by thread: RE: Subquery help
- Index(es):
Relevant Pages
|