Skip to content

Instantly share code, notes, and snippets.

@weird-coon
Created June 19, 2020 03:51
Show Gist options
  • Save weird-coon/fc9944791930f5cd9fa17213fe4bd405 to your computer and use it in GitHub Desktop.
Save weird-coon/fc9944791930f5cd9fa17213fe4bd405 to your computer and use it in GitHub Desktop.
Generate auto increment field in select query
SELECT @n := @n + 1 n,
first_name,
last_name
FROM table1, (SELECT @n := 0) m
ORDER BY user_id
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment