fragglerock
Programmer
I have some data like so
ID name Thing1 thing2 thing3 other
1 bob 0 0 1 <null>
2 fish 0 1 0 <null>
3 Steve 1 0 1 <null>
4 Holmes 0 0 0 thing4
I would like to import this into my db to get a look up table of "things" and a list of "names" and a linker to say who had what (it is many to many... people can have more than one "thing"), What is the best way of going about this (there are a fair few "others" and more than 3 "things" so as fully automated as possible! It will be a one off import though (i *hope*)
In a related question... in the fullness of time I will want to be able to re-create the above table (but with no "others" column)...
Links to "work it out yourself" resources are fine as answers
Thanks
ID name Thing1 thing2 thing3 other
1 bob 0 0 1 <null>
2 fish 0 1 0 <null>
3 Steve 1 0 1 <null>
4 Holmes 0 0 0 thing4
I would like to import this into my db to get a look up table of "things" and a list of "names" and a linker to say who had what (it is many to many... people can have more than one "thing"), What is the best way of going about this (there are a fair few "others" and more than 3 "things" so as fully automated as possible! It will be a one off import though (i *hope*)
In a related question... in the fullness of time I will want to be able to re-create the above table (but with no "others" column)...
Links to "work it out yourself" resources are fine as answers
Thanks