我有一个系统,我有动态用户信息。基本上我有一个用户表,其中包含id,名称,电子邮件和密码(所需的基础知识)。如果系统管理员想要添加用户字段,他们可以通过在user_fields表中添加一个新条目来实现,然后将该字段的数据存储在user_fields_data中。
用户:
id | name | email | password
=============================================
1 | bob smith | bob@gmail.com | asdfasdfasdf
...
user_fields:
id | field
==========
1 | address_1
2 | address_2
...
user_fields_data:
user_id | field_id | value
===============================
1 | 1 | 123 abc st
1 | 2 | suite 314
基本上我的目标是执行单个查询,我可以获得所有信息。
array(
'name' => 'bob',
'email' => 'bob@gmail.com',
'password' => 'asdfasdfasdf',
'address_1' => '123 abc st',
'address_2' => 'suite 314'
)
我整天都在一起加入表格,但是我从来没有以这种方式加入一个表格(行/列)。
提前致谢!
答案 0 :(得分:3)
select 'name' as name, name as value from user where id = 1
union all
select 'email', email from user where id = 1
union all
select 'password', password from user where id = 1
union all
select uf.field, ufd.value
from user_fields_data ufd
inner join user_fields uf on ufd.field_id = uf.id
where ufd.user_id = 1
输出:
| NAME | VALUE |
-----------------------------
| name | bob smith |
| email | bob@gmail.com |
| password | asdfasdfasdf |
| address_1 | 123 abc st |
| address_2 | suite 314 |
答案 1 :(得分:0)
如果您知道要加入的自定义字段,则可以执行类似此示例Compex MySQL Left Join using multiple entries from meta tables
的操作