我有表documentskeywords。每个文档可以具有任意数量的关键字。

关键字示例:

Client Name
Billing period
Client Address

必须注意,文档上可以有任何关键字,因此无法对其进行规范化(仅是元数据)。

现在,我想例如按Client Name然后按Billing Period进行订购,该怎么办?

如果我创建Select * from Keywords group by keyword order by value,我将无法获得所需的东西。我对MySQL没有太多的经验,所以我不能做更多的事情。

测试数据示例:

+-------+-------------+----------------------+----------------------+
| id    | document_id | keyword              | value                |
+-------+-------------+----------------------+----------------------+
|   265 |          89 | Nº de Operacion     | 000534556315         |
| 15708 |        5234 | Direccion IP         | 192.168.100.168      |
|   267 |          89 | Fecha                | 20131021             |
| 15760 |        5240 | Nombre de Cliente    | CLIENTEN1            |
| 15761 |        5240 | Asunto               | DEMANDACESTADO1220   |
| 15703 |        5234 |                      | DEMANDACESTADO1220   |
| 15700 |        5234 | Nombre de Legajo     | Documento            |
| 15702 |        5234 | Nombre del Documento | Documento            |
| 15701 |        5234 | Tipo de Documento    | Documento            |
| 15842 |        5256 | Descripcion          | ffff                 |
| 15709 |        5234 | Localizacion         | No definida          |
| 15707 |        5234 | Grupo Usuario        | Operadores           |
|   266 |          89 | Socio                | Socio1               |
| 15835 |        5255 | Decripcion           | sadsdf               |
| 15704 |        5234 | ID de Usuario        | ssadmin              |
| 15706 |        5234 | Nombre de Usuario    | ssadmin              |
+-------+-------------+----------------------+----------------------+


桌子

mysql> describe documents;
+---------+-----------+------+-----+---------------------+-----------------------------+
| Field   | Type      | Null | Key | Default             | Extra                       |
+---------+-----------+------+-----+---------------------+-----------------------------+
| id      | int(11)   | NO   | PRI | NULL                | auto_increment              |
| name    | char(100) | YES  |     | NULL                |                             |
| wfid    | char(50)  | YES  |     | NULL                |                             |
| docid   | char(50)  | YES  |     | NULL                |                             |
| created | timestamp | NO   |     | 0000-00-00 00:00:00 |                             |
| updated | timestamp | NO   |     | CURRENT_TIMESTAMP   | on update CURRENT_TIMESTAMP |
+---------+-----------+------+-----+---------------------+-----------------------------+
6 rows in set (0.00 sec)

mysql> describe keywords;
+-------------+--------------+------+-----+---------+----------------+
| Field       | Type         | Null | Key | Default | Extra          |
+-------------+--------------+------+-----+---------+----------------+
| id          | int(11)      | NO   | PRI | NULL    | auto_increment |
| document_id | int(11)      | NO   | MUL | NULL    |                |
| keyword     | char(50)     | NO   |     | NULL    |                |
| value       | varchar(250) | YES  |     | NULL    |                |
+-------------+--------------+------+-----+---------+----------------+
4 rows in set (0.00 sec)

最佳答案

您的“关键字”不是关键字。它们是属性值对。这种数据存储方式称为“实体属性值”(缩写为EAV)。我不建议将其用于每个文档中的属性。

无论如何,这就是您所拥有的。您可以将聚集与条件聚集一起使用来做您想做的事情:

select document_id,
       max(case when keyword = 'Client Name' then value end) as ClientName,
       max(case when keyword = 'Billing Period' then value end) as BillingPeriod
from keywords
group by document_id
order by ClientName, BillingPeriod;

关于mysql - 如何对非规范化列进行“排序”?并按顺序合成,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22014208/

10-16 13:25