problem in Updating a column

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Nalwyn
    New Member
    • Jan 2008
    • 4

    problem in Updating a column

    Hi,

    I have a problem in updating a column of table by matching two table of two column.if value of two columns are equal then we have to update the column of one table
  • iburyak
    Recognized Expert Top Contributor
    • Nov 2006
    • 1016

    #2
    Try this:

    Code:
    Update tableA
    Set column = value
    From tableA
    inner join tableB on tableA.column = tableB.column
    Good Luck.

    Comment

    • Nalwyn
      New Member
      • Jan 2008
      • 4

      #3
      Hi,

      Thanks for providing solution in solving the updating problem

      Comment

      Working...