B
Bully
Is it possible to use parameters in the select line e.g.
PARAMETERS Param1 Text ( 255 );
SELECT [Param1] AS Expr1
FROM Customers
WHERE [Name] = 'John Smith';
For Param1 I would pass in 'D.O.B.' and it should return me
Expr1=2003/5/9
This does not seem to happen, I just get Expr1=Param1
Any ideas?
Thanks
Jon
PARAMETERS Param1 Text ( 255 );
SELECT [Param1] AS Expr1
FROM Customers
WHERE [Name] = 'John Smith';
For Param1 I would pass in 'D.O.B.' and it should return me
Expr1=2003/5/9
This does not seem to happen, I just get Expr1=Param1
Any ideas?
Thanks
Jon