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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T01:47:21+00:00 2026-05-18T01:47:21+00:00

Suppose that I have a table my_table(id, x, y) . I want to write

  • 0

Suppose that I have a table my_table(id, x, y). I want to write a trigger to prevent updating the y col and setting it to a non-null value if x is already null. As SQL Server doesn’t have a before update trigger, how can this be done? Apparently we can use an instead of trigger for this purpose, but how can we check the old and current values and decide whether we should raise an error or let the update execute normally?

Example:

Let’s pretend we have this row in the DB:

1, null, null

Then this should fail (raise error)

update my_table set y = 'blah' where id = 1;

But this should succeed:

update my_table set y = null where id = 1;

I know the example isn’t very meaningful, but it is similar to what I am trying to achieve.

  • 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-18T01:47:21+00:00Added an answer on May 18, 2026 at 1:47 am

    This should work, but I am not sure what other edge conditions you need to handle:

    create table my_table (id int identity, x varchar(20), y varchar(20))
    go 
    CREATE TRIGGER tgNotNullYonMyTable
    ON my_table
    FOR UPDATE
    AS 
    IF UPDATE(y)
       BEGIN
           IF exists (
                      select 1 
                        from deleted d 
                             join inserted i on i.id = d.id 
                       where (d.x is null or i.x is null)
                             and i.y is null
                     ) 
              BEGIN
                  RAISERROR ('Leave Y alone if x is null.', 16, 1)
                  rollback tran
              END
       END
    go
    
    insert my_table values (null,null)
    
    go 
    
    update my_table set y = 'blah' where id = 1;
    go 
    update my_table set y = null where id = 1;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have a simple MySQL table that looks like this: CREATE TABLE `my_table`
Lets suppose that I have a Category table with a column that holds the
Suppose I have table A with a field that can be either 1 or
Suppose I have an array that mimics a database table. Each array element represents
Suppose I have two columns in a table that represents a graph, the first
Suppose I have employee and department table, employee has foreign key departmentID that is
Suppose I have a MySQL table called MyTable, that looks like this: +----+------+-------+ |
Suppose I have a table that contains valid data. I would like to modify
Suppose I have this database table (some sample code below) that stores the relationship
Suppose I want to have two variables and have them both equal to null

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.