brianpercival
Programmer
I have an access application, one of the reports runs a query which itself triggers a series of queries with one as input to another etc. Now,
say there is Qry1 as
select f1 as Expr1, f2 as Expr2,f3 as Expr3 from t1
and Qry2 as
select [Qry1].[f1],[Qry1].[f2],[Qry1].[f3]from [Qry1]
Should this work? or should Qry2 be
select [Qry1].[Expr1],[Qry1].[Expr2],[Qry1].[Expr3]from [Qry1]
I am using access 2000.
Also I am guessing Expr1,expr2 etc. convention is auto generated when the query is created in the design view.
The application I am looking is supposedly working fine, but there seems to be this major flaw or the problem might be totally different, like perhaps a version problem.
Can anyone plz throw some light on this?
regards,
Brian
say there is Qry1 as
select f1 as Expr1, f2 as Expr2,f3 as Expr3 from t1
and Qry2 as
select [Qry1].[f1],[Qry1].[f2],[Qry1].[f3]from [Qry1]
Should this work? or should Qry2 be
select [Qry1].[Expr1],[Qry1].[Expr2],[Qry1].[Expr3]from [Qry1]
I am using access 2000.
Also I am guessing Expr1,expr2 etc. convention is auto generated when the query is created in the design view.
The application I am looking is supposedly working fine, but there seems to be this major flaw or the problem might be totally different, like perhaps a version problem.
Can anyone plz throw some light on this?
regards,
Brian