SQL Select - transform rows in columns
问题 Quite basic, but I am stuck at the moment. On an Informix database (no pivot option), I am searching for a dynamic way to transform the following table using SQL: book | info | value ----------------------------- Moby Dick | price | high Moby Dick | stock | few Hamlet | price | low Hamlet | stock | many Faust | price | medium Faust | stock | normal Resulting table: book | price | stock ----------------------------- Moby Dick | high | few Hamlet | low | many Faust | medium | normal Thanks for