I have 2 bit columns in a table active and suspended The active column already contains values but the suspended column still null
How can I fill the suspended field with values that is opposite of active?
I was stuck in this code..
 Declare @suspended bit;
 --some conditions
 Update Users_mock
 Set Suspended = @Suspended;
 
     
     
     
     
     
    