最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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

 更新時(shí)間:2013年03月16日 22:21:23   作者:  
游標(biāo)刪除多個(gè)表里臟數(shù)據(jù)的方法,需要的朋友可以參考一下

第一種方法:

復(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)--此處要注意,聲明的長(zhǎng)度一定要夠

--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)

相關(guān)文章

最新評(píng)論

湛江市| 敦化市| 贡觉县| 舟曲县| 关岭| 霸州市| 乌兰浩特市| 潍坊市| 宁远县| 安溪县| 南丹县| 大石桥市| 衡山县| 富阳市| 南充市| 卢湾区| 沙坪坝区| 漳浦县| 米脂县| 资兴市| 库车县| 宜阳县| 南木林县| 大新县| 织金县| 建昌县| 西峡县| 榆中县| 沽源县| 屏南县| 通化县| 上犹县| 辽阳市| 蕲春县| 江山市| 阳朔县| 盐亭县| 东阿县| 克山县| 丹东市| 和静县|