ALTER TABLE members DROP ID;
ALTER TABLE members AUTO_INCREMENT = 1;
ALTER TABLE members ADD ID int UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST;
Category: Tips & Tricks
Windows Sihost.exe error
I ran into this issue by swapping system hard drives and solved this by doing the following
- Press CTRL-ALT-DEL and open the task manager
- Click File Run new task
- Enter cmd and click the “create this task with administrative privileges”
- Run
sfc /scannow
- Run
dism /online /cleanup-image /restorehealth
No guarantee that this will help you too.