treyhunsucker
Programmer
Hello,
I can't seem to find any documentation on this.
I would like to insert a range of numbers.
Example: 1 thru 50
Instead of doing:
insert into table set (data) values ('1');
insert into table set (data) values ('2');
insert into table set (data) values ('3');
and so on I would like to be able to:
insert into table set (data) values ('1' thru '50');
I am sure it's possible I just can't find the right syntax
Thank you in advance
I can't seem to find any documentation on this.
I would like to insert a range of numbers.
Example: 1 thru 50
Instead of doing:
insert into table set (data) values ('1');
insert into table set (data) values ('2');
insert into table set (data) values ('3');
and so on I would like to be able to:
insert into table set (data) values ('1' thru '50');
I am sure it's possible I just can't find the right syntax
Thank you in advance