Is it possible to combine two tables as in my example?
table one:
bibid -- fieldid -- fied_data
400 ----- 10 ------- 107
400 ------ 5 -------- 1950
400 ------ 3 -------- USA
405 ------ 5 -------- 1997
405 ----- 10 -------- 90
405 ------ 3 -------- RUSSIA
table two:
bibid -------- name
400 --- Postman Always Rings Twice
405 --- Postman is a very good person
That result would be:
bibid --------- name --------------------------length ----------year ---------- country
400 -- Postman Always Rings Twice --------------107------------1950 ------------USA
405 -- Postman is a very good person -----------90-------------1997 ------------RUSSIA
Using joins to fetch the data.
But it would be better to normalize your data…
BTW: Did you mean field_data instead of fied_data?