This is a discussion on Using application data in query within the DB2 forums, part of the Database Server Software category; --> There's nothing special in this query: SELECT tbla.* FROM tbla, tblx WHERE tbla.cola = tblx.cola ORDER BY tblx.colz except ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| There's nothing special in this query: SELECT tbla.* FROM tbla, tblx WHERE tbla.cola = tblx.cola ORDER BY tblx.colz except that I'm creating tblx in application. It's a small array with just 2 columns and usually 2-3 rows. Used for user preferences. Do you think there's a way to do it? I'm using PHP and DB2 if it matters. |
| |||
| regul8or wrote: > There's nothing special in this query: > > SELECT tbla.* FROM tbla, tblx WHERE tbla.cola = tblx.cola ORDER BY > tblx.colz > > except that I'm creating tblx in application. It's a small array with > just 2 columns and usually 2-3 rows. Used for user preferences. SELECT tbla.* FROM tbla, TABLE ( VALUES ( ... <generate rows here> ... ) ) AS tblx(cola, colb) WHERE tbla.cola = tblx.cola ORDER BY tblx.colb An example for the generated rows could be: VALUES (1, 2), (3, 4), (5, 6) > Do you think there's a way to do it? I'm using PHP and DB2 if it > matters. Does not matter. -- Knut Stolze DB2 Information Integration Development IBM Germany |