select * into #tmp
from 資料表
where 身分字號欄位名='A123456789'
update t1
set 身分字號欄位名='Bxxxxxxxxxx'
from #tmp t1
insert into 資料表 select * from #tmp
※ 引述《qw5526259 (B.K)》之銘言:
: 資料庫名稱:MS SQL Server 2000
: 資料庫版本:2000
: 內容/問題描述:
: 假設下面語法找到一筆資料
: Select * from 資料表 where 身分字號欄位名='A123456789'
: 如何在相同的資料表下新增此筆資料
: 只改身分字號欄位名='Bxxxxxxxxxx'呢?