View Parameter

Smart

Registered User.
Local time
Today, 00:02
Joined
Jun 6, 2005
Messages
436
In access you can in a query type [Please enter name] in the criteria section and when the query runs it asks for a parameter.

My question is how do I achieve this with a view in SQL?

(I know how to achieve it with a stored procedure)

Any Help gratefully received

Thanks
 
Fairly sure you can't do this with a View.

Maybe you could create a Stored Procedure that captures parameter data and then executes a View (with parameter).
 
You could filter your view in access with the form properties but it would be better to use your view in the stored procedure and make a parameter in the SP.
 

Users who are viewing this thread

Back
Top Bottom