sql >> Databasteknik >  >> RDS >> Mysql

MySQL:Dela upp kommaseparerad lista i flera rader

I MySQL kan detta uppnås enligt nedan

SELECT id, length FROM vehicles WHERE id IN ( 117, 148, 126) 

+---------------+
| id  | length  |
+---------------+
| 117 | 25      |
| 126 | 8       |
| 148 | 10      |
+---------------+

SELECT id,vehicle_ids FROM load_plan_configs WHERE load_plan_configs.id =42

+---------------------+
| id  | vehicle_ids   |
+---------------------+
| 42  | 117, 148, 126 |
+---------------------+

För att nu få längden på kommaseparerade fordons-id:er använd nedanstående fråga

Output

SELECT length 
FROM   vehicles, load_plan_configs   
WHERE  load_plan_configs.id = 42 AND FIND_IN_SET(
       vehicles.id, load_plan_configs.vehicle_ids
)

+---------+
| length  |
+---------+
| 25      |
| 8       |
| 10      |
+---------+

För mer information besök http://amitbrothers .blogspot.in/2014/03/mysql-split-comma-separated-list-into.html



  1. Hur man fyller ett nummer med ledande nollor i MariaDB

  2. Vikten av att upprätthålla en HIPAA-kompatibel databas

  3. Hur man laddar JAR-fil i Oracle Database?

  4. Hur profilerar man PostgreSQL Database?