国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 數(shù)據(jù)庫 > SQL Server > 正文

游標(biāo)刪除多個(gè)表里臟數(shù)據(jù)的方法

2024-08-31 00:44:12
字體:
供稿:網(wǎng)友

第一種方法:

復(fù)制代碼 代碼如下:

CREATE proc [dbo].[delAllRecord]
as
declare @tableName nvarchar(255)
declare @Sql nvarchar(255)

Declare curTable Cursor
for select Table_Name from information_schema.tables where TABLE_TYPE='BASE TABLE'
Open curTable
Fetch Next From curTable Into @tableName

WHILE(@@FETCH_STATUS = 0)
BEGIN
set @Sql = N'delete from '+@tableName
exec sp_executesql @sql
Fetch Next From curTable Into @tableName
end
CLOSE curTable
DEALLOCATE curTable


第二種方法:

復(fù)制代碼 代碼如下:


--declare test_cursor cursor scroll for

--select id,table_name from dbo.section_type

--open test_cursor

--declare @id int

--declare @table_name nvarchar(50)

--while @@fetch_status=0

--begin

--fetch next from test_cursor into @id,@table_name

--print @id

--print @table_name

--end

--close test_cursor

--deallocate test_cursor

--刪除projectrangtree的臟數(shù)據(jù)

delete from projectrangtree where deleteversion>0

delete from projectrangtree where type=3 and parentid not in(select id from projectrangtree where type=2)

delete from projectrangtree where type=4 and parentid not in(select id from projectrangtree where type=3)

delete from projectrangtree where type=5 and parentid not in(select id from projectrangtree where type=4)

--刪除section_settings的臟數(shù)據(jù)

delete from section_settings where parent_prj_tree_id not in(select id from projectrangtree)

--刪除各個(gè)表里的測(cè)點(diǎn)

declare @table_name varchar(50)

declare @sql nvarchar(500)--此處要注意,聲明的長度一定要夠

--declare @measuring_point_id nvarchar(500)

declare del_cursor cursor scroll for

select table_name from section_type

open del_cursor

fetch next from del_cursor into @table_name

--print @table_name

while (@@fetch_status=0)

begin

--print quotename(@table_name)

--set @measuring_point_id='select measuring_point_id from '+quotename(@table_name)

--exec sp_executesql @measuring_point_id

set @sql = 'delete from '+ quotename(@table_name) +' where measuring_point_id not in(select id from measuring_point_setting)'

exec sp_executesql @sql

--delete from @table_name where measuring_point_id not in (select id from measuring_point_setting)

fetch next from del_cursor into @table_name

end

close del_cursor

deallocate del_cursor

--delete from (select talbe_name from section_type) where measuring_point_id not in (select id from measuring_point_setting)

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 普定县| 青冈县| 张掖市| 拉孜县| 西宁市| 菏泽市| 山东| 界首市| 邵阳市| 麻江县| 沾化县| 即墨市| 长汀县| 磴口县| 汾西县| 中山市| 阿拉善盟| 新乡县| 台北县| 江陵县| 且末县| 浙江省| 新田县| 中卫市| 瓦房店市| 郸城县| 龙山县| 鱼台县| 万全县| 黄陵县| 天柱县| 利辛县| 达拉特旗| 庄河市| 大姚县| 化德县| 北票市| 新竹县| 江津市| 长治市| 施秉县|