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)
feedback
|
|
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
| ||||
|
feedback
|
|
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.
| |||||
feedback
|
| |||
|
feedback
|
|
Here's a hardware engineer's version of Pittsburgh DBA's solution:
| |||
|
feedback
|
|
Let's say you want to insert numbers 1 through 100 into your table. As long as you have some other table that has at least that many rows (doesn't matter the content of the table), then this is my preferred method:
Want a range that starts with something other than 1? Just change what @ROW gets set to on the join. | |||
|
feedback
|