Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

created a prompt in a view?

Status
Not open for further replies.

aspnetuser

Technical User
Sep 9, 2004
273
0
0
US
Is it possible to create a prompt in a view?

I don't have access to SP or functions at present and need a quick fix.

i need to prompt or a id field.

enter_id

user will enter 1

return view results...

possible?
 
i think it's not possible to prompt in a view, but it's possible in a stored procedure.


Create Procedure nameOfStoredProcedure

@enter_id float

AS

SELECT * FROM table WHERE id = @enter_id;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top