Does every record has an unique field in SQL Server?
问题 I'm working in Visual Studio - VB.NET. My problem is that I want to delete a specific row in SQL Server but the only unique column I have is an Identity that increments automatically. My process of work: 1. I add a row in the column (the identity is being incremented, but I don't know the number) 2. I want to delete the previous row Is there a sort of unique ID that every new record has? It's possible that my table has 2 exactly the same records, just the sequence (identity) is different. Any