This is the feature request. At the moment the db-import command imports data from a relational database into Redis Hash following way: ```bash $ riot dbimport ... hset --keyspace actor --key id ``` ``` id: 123 HSET: actor:123 first: Tom => first: Tom last: Hanks last: Hank ``` Feature request: transpose a table in order to get Redis Hash like this: ``` id: 123 HSET: actor:123 first: Tom => Tom: Hank last: Hanks ```
This is the feature request.
At the moment the db-import command imports data from a relational database into Redis Hash following way:
Feature request: transpose a table in order to get Redis Hash like this: