求刪除SQL資料庫中某個表的重複資料

時間 2022-05-16 10:25:06

1樓:麼睿識充騰

1.先將umane用乙個臨時表存起來

select

distinct(uname)

uname

into

#aform

users

2.刪除users表內的資料

delete

from

users

3.把臨時表使用者加到users表中,並將預設upwd全設為1234要看你upwd是什麼資料型別

如果是數字的就

insert

users

select

uname,1234

from

#a是字元型的

insert

users

select

uname,'1234'

from

#a4.最後刪除臨時表

drop

table

#a這樣所有人的初始密碼都變為1234

2樓:貿水風梁玲

select

distinct

*into

#tmp

from

tablename

drop

table

tablename

select

*into

tablename

from

#tmp

drop

table

#tmp

利用臨時表進行刪除,把tablename改成你的表名就行了。

急求sql資料庫修復軟體,急求SQL資料庫修復軟體

月鋣 是哪種損壞?資料還是配置?是你不小心delete資料了想要還原。還是直接備份的庫無法附加?像你這種問題沒有修復軟體可用的。你用的是不是sql server2000?沒打補丁的那種?你打到sp4,最起碼也得是sp3。再試試。如果不是這個原因的話,那沒有任何辦法。原因是刪除後的檔案本身恢復的可能就...

sql資料庫題求大神幫忙,sql資料庫題求大神幫忙

if object id n member is not null drop table membercreate table member mid char 10 not null primary key,mname char 50 not null goexec sp addextendedpr...

SQL資料庫,如何把一張表從資料庫中插入到另外資料庫?如何寫語句

如果兩個表結構完全一樣的,用insert into data2.table2 select from data1.table1 如果結構不一樣或者你要指定欄位,用insert into data2.table2 欄位1,欄位2,欄位 select 欄位j,欄位k,欄位m from data1.tab...