我有 2 个表,一个是 field_id,另一个是 field_value。我想按行显示个人资料内容,名字,姓氏,年龄,爱好,关于我。
field_id
-------------------------------------------------
id | name |
--------|--------------------------|-----------------
1 First name
2 Last name
3 Age
4 Hobby
5 About me
----------------------------------------------------------
field_value --here id pmkey auto increment and field_id 在 up table 中提到
------------------------------------------------------------------
id | user_id | field_id | field_value |
---|----------|----------|--------------------------------------|----
1 | 1 | 1 |John
2 | 1 | 1 |smith
3 | 1 | 2 |Capili
4 | 1 | 3 |32
5 | 1 | 4 |Reading Book
6 | 1 | 4 |Swimming
7 | 1 | 4 |Boating
8 | 1 | 5 |I
9 | 1 | 5 |am
10 | 1 | 5 |very
11 | 1 | 5 |simple
11 | 1 | 5 |person
-----------------------------------------------------------
我想像这样逐行显示个人资料的每个内容
name -:john smith capili
Age-:32
Hobby-:Reading Book,Swimming,Boating
About me-:I am very simple person.
请帮我。并建议我应该使用或不使用这种类型的数据库。