Im looking to see if there is a match between what someone submitted in one table to a different table in the database. I can\'t quite figure out how to set it up. What im
if this is what you want
update tableA set colA=(select (case when b.colB=colA then colC+1 else colC end) from tableB b)