Discussing with an coworker about data structures and I was reminded I use to convert from "Schema A" to "Schema B", is this considered "normalization/de-normalization" or schema conversion or what? Any insight would be appreciated.
"Schema A"
TableA ID KEY Value ------------ 1 A 23 1 B 250 2 B 100 TableB Key Description --------------- A Age B Weight
"Schema B"
TableC ID Age Weight -------------- 1 23 250 2 NULL 100