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 4234176
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T02:19:02+00:00 2026-05-21T02:19:02+00:00

I am going through our codebase and see a lot of tests like this:

  • 0

I am going through our codebase and see a lot of tests like this:

declare @row_id int = ...
declare @row_attribute string

select
  @row_attribute = ROW_ATTRIBUTE
from
  SOME_TABLE
where
  ROW_ID = @row_id

if @row_attribute is null
begin
  ... handle not existing condition
end

Here is the question, is it OK/not OK to replace the condition in if statement to:

if @@rowcount = 0
begin
  ... handle not existing condition
end

I know about exist function, but the goal here is to get some attributes of the row and check for its existence at the same time.

  • 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-21T02:19:03+00:00Added an answer on May 21, 2026 at 2:19 am

    Yes.

    Except if the WHERE clause isn’t on a PK (or unique index) more than one row might be returned but that would probably be an error anyway. In that eventuality the variable is repeatedly reassigned to and its final value will depend on the plan.

    DECLARE @row_attribute INT
    
    select
      @row_attribute = object_id
    from
      sys.objects /*<--No WHERE clause. Undefined what the 
                       final value of @row_attribute will be.
                       depends on plan chosen  */
    
    
    SELECT @row_attribute, @@ROWCOUNT  
    

    Edit. Just noticed your proposed test is if @@rowcount = 0 not if @@rowcount <> 1 so the above wouldn’t affect it and the whole answer could be condensed to the word “Yes”!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've been going through the process of cleaning up our controller code to make
I am going through our old site files and data that has our members
So I am going through our database and removing some unneeded access levels that
I have recently been going through some of our windows python 2.4 code and
I'm currently going through all of our Crystal Reports and changing them to read
While going through one of our own projects, that other developer used rand() to
I'm currently going through the process of running FxCop through our application that has
have been going through here and google looking for a spellcheck solution. I see
Going through some of my older Delphi projects and upgrading them to D2009, as
Going through Javascript documentation, I found the following two functions on a Javascript object

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.