I am new to MySql and coding. i have an Aid column that is Primary Key and Auto Increment in settings. But while I delete a row it doesn't update the Aid.
I know that the code that i need in MySql is :
SET @a = 0;
UPDATE aircraft.l1201 SET l1201.Aid = @a := @a +1;
How can I translate this into c# code?