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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T23:11:38+00:00 2026-06-04T23:11:38+00:00

I have two tables, property and component . component.id_property = property.id . I’m trying

  • 0

I have two tables, property and component. component.id_property = property.id.

I’m trying to create a procedure, which counts components on selected property and if there are no components for selected property, it change property.id_state to 1.

create PROCEDURE property_statement_change AS
BEGIN
declare @value int;

select 
    @value = count(c.value)
from
    component c
where
    c.id_property = 1
group by c.id_property

IF (@value = 0)
  UPDATE property
  SET id_state = 1
  WHERE property.id = 1
END

If I execute stored produre, it doesn’t change anything, but select and also update works right. What I’m doing wrong?

  • 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-06-04T23:11:40+00:00Added an answer on June 4, 2026 at 11:11 pm

    Like stated on the comments, value is NULL instead and not 0, so here’s the code:

    create PROCEDURE property_statement_change AS
    BEGIN
    declare @value int;
    
    select 
        @value = count(c.value)
    from
        component c
    where
        c.id_property = 1
    group by c.id_property
    
    IF (@value is NULL)
      UPDATE property
      SET id_state = 1
      WHERE property.id = 1
    END
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two tables: a Files table, which includes the file type, and a
In my MSSQL I have two tables, Property and Photo. To make it shorter
i have two different tables table1 - property ================= id,name, address, city state, zip
I have two components, a base Entity component: <cfcomponent persistent=true> <cfproperty name=Id fieldtype=id generator=native>
I have two tables Item and Property and one item can have multiple properties.
I have two tables User and UserRole which are they connected using a link
I'm trying to set up a project using hibernate.I have two tables : Users
I have two models : Category and Picture which refers to two tables, Categories
I have two tables, Property and PropertyMeta. They are linked by the PropertyID value.
I have two tables table COMMUNITY id, name, etc. table PROPERTY id, community_id, type,

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.