hi,
i m doing a stuff where i need to delete a row but i need to delete a row in a table but id column of row should remain and all other record must be shifted upward using sqlserver 2005
example
p_id | p_name |
1 | alan |
2 | Brad |
3 | George |
So , now i need to delete alan from table but id will sustain and brad and george will shift upward like
p_id | p_name |
1 | Brad |
2 | George |
how can i use this concept in my project
regards
aziz