• 2022-06-03
    现有两个表A.B.有相同列id.若要使新表A中id和表B中id相同的记录且修改A表中的列name为Gauss。以下语句可以实现的是?()
    A: update A join B where A.id=B.id set A. name =’Gauss’
    B: update A join B on A.id=B.id set A.name =’Gauss’
    C: update A join B set A. name =’Gauss’
    D: update A join B set A. name =’Gauss’
  • 举一反三