vote up 0 vote down star

This is the opposite of reducing repeating records. SQL query to create physical inventory checklists If widget-xyz has a qty of 1 item return 1 row, but if it has 5, return 5 rows etc. For all widgets in a particular warehouse.

Previously this was handled with a macro working through a range in excel, checking the qty column. Is there a way to make a single query instead?

The tables are FoxPro dbf files generated by an application and I am outputting this into html

flag

80% accept rate
The answer to this question is highly dependent on the datbase platform that you're using. SQL Server? Oracle? Access? – Dave Markle Nov 7 at 21:46

3 Answers

vote up 1 vote down check

For SQL 2005/2008, take a look at

CROSS APPLY

What I would do is CROSS APPLY each row with a sub table with as many rows as qty has. A secondary question is how to create that sub table (I'd suggest to create an xml string and then parse it with the xml operators) I hope this gives you a starting pointer....

Starting with

declare @table table (sku int, qty int);
insert into @table values (1, 5), (2,4), (3,2);
select * from @table;

sku         qty
----------- -----------
1           5
2           4
3           2

You can generate:

with MainT as (
    select *, convert(xml,'<table>'+REPLICATE('<r></r>',qty)+'</table>') as pseudo_table
    from @table 
)
select p.sku, p.qty
from MainT p 
CROSS APPLY 
(
    select p.sku from p.pseudo_table.nodes('/table/r') T(row)
) crossT


sku         qty
----------- -----------
1           5
1           5
1           5
1           5
1           5
2           4
2           4
2           4
2           4
3           2
3           2

Is that what you want? Seriously dude... next time put more effort writing your question. It's impossible to know exactly what you are looking for.

link|flag
Using the idea to create a table with as many rows as qty, I tried something like this, and then do a query similar to this: SELECT widgets.SKU FROM widgets INNER JOIN RowAmts ON widgets.QTY=RowAmts.qty; However the prospect of creating a giant table with 100 rows of 100 or 99 rows of 99 of rows just seems wrong. Or is it? – datatoo Nov 7 at 22:55
sorry, you did help me – datatoo Nov 8 at 0:51
vote up 0 vote down

you can do it using dynamic sql. What flavor of sql are you using?

link|flag
access and mssql, but the tables are vfp – datatoo Nov 7 at 23:03
vote up 1 vote down

You can use table with number from 1 to max(quantity) and join your table by quantity <= number. You can do it in many ways, but it depends on sql engine.

link|flag
is there a simple example of a join like this I could refer to? – datatoo Nov 7 at 21:55
What sql engine do you use? – LukLed Nov 7 at 22:20
FoxPro tables and usually constructing stuff in mssql or access first, then I reproduce what works in a webpage – datatoo Nov 7 at 23:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.