SQL2000快速批量刪除前N條資料

2021-08-25 01:17:03 字數 610 閱讀 4767

sql2000快速批量刪除前n條資料

--前提:只能根據擁有聚集索引的id才能達到準確無誤的刪除操作

--下面是乙個簡單的例子

--廢話不多說,看**

*/ifobject_id('

tb') is

notnull

drop

table

tbgo

create

table

tb (id

int)

goinsert

tb select

2union

allselect

1union

allselect3go

create

index

idx1

ontb(id)

goset

rowcount

2delete

a from

tb a

with

(index

=idx1)

setrowcount0go

select

*from

tbgo

drop

table

tbgo

sql2000 基本刪除,插入,查詢

insert into table1 name subject,class values 我的名字 英語 3 select from table1 insert into table1 subject,class values 英語 3 update table1 set name where is...

刪除與恢復擴充套件儲存過程 SQL 2000資料庫

命令刪除sql的擴充套件 use master exec sp dropextendedproc xp cmdshell exec sp dropextendedproc xp dirtree exec sp dropextendedproc xp enumgroups exec sp dropex...

SQL2000自動備份 壓縮 刪除 備份檔案

create proc dbbf test asdeclare dbname varchar 20 cmd1 nvarchar 120 cmd2 varchar 120 cmd3 varchar 120 i int,filename varchar 80 path varchar 80 set db...