开发者

Deleting records using a cursor

开发者 https://www.devze.com 2022-12-14 17:36 出处:网络
I have limited knowledge of SQL so can someone let me know if my thoughts are correct. I have a table that slowly fills up over time. I need to delete records from the first record to a given point in

I have limited knowledge of SQL so can someone let me know if my thoughts are correct. I have a table that slowly fills up over time. I need to delete records from the first record to a given point in the table. As the primary key is based on GUIDs I am aware that I can’t do a delete easily because I can’t sort based on GUIDs (this was discussed in a previous thread). Would it be possible to use a cursor to look at the first record in the table and progress through the table deleting records until I get to a certain GUID ? The problem I have is that I need to delete all the records that were put in the table before the one defined by the GUID but I can only dele开发者_如何转开发te them if the data of the record is older that a predefined date. I know this is all a bit messy but I’m having to retro fit a solution so a bodgy solution will do for now.

I'm using MS SQL Server 2008


First of all, you have to wonder if you really want to use a cursor when you work with any kind of SQL query.

SQL is set based, so it is very efficient and capable of handling 'sets' of data.

First things first, what is your definition of 'the first record' ? How do you determine whether a record comes before another record ?

I understand that you have a 'datetime' column defined in your table ?

Is it possible to determine the 'datetime' of the record that you still want to keep in the table ?

If so, I think you can simply perform a DELETE on the table with a WHERE clause that makes sure that records that are older then the specified date, are not deleted.


Assuming the GUID is how you find out how far to delete:

DELETE FROM TheTable WHERE DateColumn < (SELECT DateColumn FROM TheTable WHERE GuidColumn = 'GUIDGUID-GUID-GUID-GUID-GUIDGUIDGUID')
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号