3
從行數據我有4個表:mysql的select查詢得到基於
- 源
- 字段(源字段)
- source_data
- source_data_details(source_data的孩子,保存在含有記錄行技術)
source
id name status
1 web active
field
id source_id name config status
1 1 record_id 101 active
2 1 firstname 101 active
3 1 surname 101 active
source_data
id source_id status
1 1 active
2 1 active
source_data_details
id source_data_id source_field_id value
1 1 1 1avhh2
2 1 2 john
3 1 3 mavrick
4 2 1 87k3jo
5 2 2 peter
6 2 3 lyne
我如何可以查詢它來使結果
source_data.id record_id firstname surname
1 1avhh2 john mavrick
2 87k3jo peter lyne
這個問題看起來類似︰http://stackoverflow.com/questions/7674786/mysql-pivot-table – 2014-12-07 12:52:11