• 2022-06-05
    对于表A(col1 int,col2 char(1))更新col1=1的数据col2值为N,下面语句正确的是()
    A: Aupdate table A setcol2=’N’ where col1=1
    B: Bmodify table A setcol2=N where col1=1
    C: Cupdate A set col2=’N’ where col1=1
    D: Dmodify A set col2=N where col1=1
  • 举一反三