Here I have two tables. The first one categorizes items by certain descriptions from a fixed list. Each description, eg; "Big Size" is categorized in the table below with a minutes key. I want to create a table/query that is of the form of the 3rd table. I showed only the first record as an example, replacing minutes with each description.
Item Size Strength Agility A Big Strong Slow B Small Strong Fast C Small Strong Fast D Small Weak Fast E Medium Weak Fast F Medium Medium Fast G Small Medium Medium H Big Medium Medium Description Type MinutesSize Small 1 Size Medium 2 Size Big 3 Strength Weak 5 Strength Medium 2.5 Strength Strong 1 Agility Slow 10 Agility Medium 5 Agility Fast 0.5
I want to "combine" these tables to make the table look like this without changing the design of the above two tables. If I MUST change the design of one of the tables, that's fine, just let me know how.
Item Size Strength AgilityA 3 1 10
How would I be able to handle this? I have no idea what type of query I would use or how it would arranged. I'm also pretty stupid at SQL so i probably wouldn't understand too many answers that had a lot of that in them, unfortunately.
Thanks!