sql如何復(fù)制一張表 sql server怎么把一張表內(nèi)容復(fù)制給另外一張表?
sql server怎么把一張表內(nèi)容復(fù)制給另外一張表?在SQL server中,如果目標(biāo)表不存在:select*into target table from OF original table也可以用
sql server怎么把一張表內(nèi)容復(fù)制給另外一張表?
在SQL server中,如果目標(biāo)表不存在:select*into target table from OF original table也可以用于joinselect a.*into backuUDELETEsca1 from sca1 a join#qq b on a.sca01=b.sca01 where a.sca01 not In(select*from#ww)