How do I generate a range of consecutive numbers (one per line) from a mysql query so that I can insert them into a table?
for example :
nr
1
2
3
4
5
I would like to use only mysql for this (not php or other languages)
|
2
|
|||||||
|
|
|
If you need the records in a table and you want to avoid concurrency issues, here's how to do it. First you create a table in which to store your records
Secondly create a stored procedure like this:
Lastly call the SP:
Result
|
||
|
|
|
|
Here is one way to do it set-based without loops. This can also be made into a view for re-use. The example shows the generation of a sequence from 0 through 999, but of course, it may be modified to suit.
|
||
|
|
|
|
||
|
|