I\'m trying to return the Id of a row I update in sql
UPDATE ITS2_UserNames SET AupIp = @AupIp WHERE @Customer_ID = TCID AND @Handle_ID = ID SELECT @
If you want to find out the records that match that update you should do a select with it
Select IdColumn From ITS2_UserNames WHERE @Customer_ID = TCID AND @Handle_ID = ID