Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 530735
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T09:13:40+00:00 2026-05-13T09:13:40+00:00

I write stored procedure for update. create procedure sp_videos_updateviews (@videoid varchar(50),@ret int output) as

  • 0

I write stored procedure for update.

create procedure sp_videos_updateviews (@videoid varchar(50),@ret int output)
as
   set @ret = update videos set [views]=[views]+1 
   where videoid = @videoid

   if(@ret>1)
   begin
     set @ret=1
   end
   else
   begin
     set @ret=0
   end

but it is giving error like this

Incorrect syntax near the keyword ‘update’.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T09:13:41+00:00Added an answer on May 13, 2026 at 9:13 am

    Surya,

    From what I gather you are looking to return from the proc a 1 or 0 depending on if any records were updated from your proc. I agree that @@ROWCOUNT is where you should go, try this code:

    create procedure proc_videos_updateviews (@videoid varchar(50),@ret int output) 
    as 
    
    update videos set [views]=[views]+1
    where videoid = @videoid
    
    if(@@ROWCOUNT > 0)
    begin
        set @ret = 1
    end
    else
    begin
        set @ret = 0
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to write a stored procedure to update one of a set of
Whenever I write a stored procedure for selecting data based on string variable (varchar,
I need to write a Stored procedure in SQL server whose data returned will
I'm trying to write a stored procedure to select employees who have birthdays that
I am trying to write a stored procedure which selects columns from a table
I'm using a stored procedure to update\insert data into a table using MERGE. One
I have a stored procedure that is required to update an existing record with
I want to write a stored procedure that will accept a parameter of @searchString.
I want to write a stored procedure that queries XML files after I have
I want to create generic function that will need only parameter as Stored procedure

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.