You should follow the below step after login in sql server.
Be sure that you are logged in sql server.
SIMPLE UPDATE QUERY.
Select your database as shown here.
Click on new query as shown here.
Write below code in that file.
Create procedure updatelogin
@id varchar(50),
@name varchar(50),
@pass varchar(50)
as
Update logintable set name=@name,passsword=@pass where id=@id
Here name password and id are logintable field name.
Here updatelogin is a stored procedure name and logintable is table name.
After writing the code press F5. or select Execute query.
You will get a message as shown here.
Here is the way how to see stored procedure.
After refreshing you will get your stored procedure with prefix dbo.procedurename
My Linked Profile
Submit your site
Submit your site to listtheweb.com
1 comment:
Good dispatch and this enter helped me alot in my college assignement. Thanks you for your information.
Post a Comment