UltraSmooth
Programmer
This query will probably not make much sense but is there a way to select a single record from a table but have the record show up x number of times (x specified by parameter at run-time).
This would be the same as doing a union all on multiple copies of the same query, ie.,
SELECT field1 FROM table WHERE field2='value'
UNION ALL
SELECT field1 FROM table WHERE field2='value'
UNION ALL
SELECT field1 FROM table WHERE field2='value'
.....
I was hoping for something simpler.
This would be the same as doing a union all on multiple copies of the same query, ie.,
SELECT field1 FROM table WHERE field2='value'
UNION ALL
SELECT field1 FROM table WHERE field2='value'
UNION ALL
SELECT field1 FROM table WHERE field2='value'
.....
I was hoping for something simpler.