Skip to content

Instantly share code, notes, and snippets.

@sotoz
Last active January 30, 2016 19:40
Show Gist options
  • Save sotoz/b69cb0a0bf204bc2630d to your computer and use it in GitHub Desktop.
Save sotoz/b69cb0a0bf204bc2630d to your computer and use it in GitHub Desktop.
Update/Increment a single column on multiple rows at once
SET @a = 0;
UPDATE favorits SET order = @a:=@a+1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment