sqlserver

作者: 奋斗吧_青年 | 来源:发表于2017-12-29 11:21 被阅读0次

    查询满足条件的数据到一张新表

    select * INTO NEW_TABLE from TABLE;

    关联更新操作

    update  TABLE_A set COLUMN_A=xxx from TABLE_A  a,TABLE_B b where a.COLUMN_X=b.COLUMN_X and a.COLUMN_X =xxx and b.COLUMN_X =xxx;

    相关文章

      网友评论

          本文标题:sqlserver

          本文链接:https://www.haomeiwen.com/subject/nhrigxtx.html