hello (Urgent),
There is any possibility is there in stored procedure to send query with parameter like this.
This is my parameter:
Parameter =Where studentname='giri'
I wrote stored procedure like this..............
create procedure proc_name(@parameter varchar(200))
as
select * from employee @paramerter.
GO
But I impliment it got error.