sql >> Databasteknik >  >> RDS >> Mysql

Hitta strängposition och gå med i en annan tabells rad

Dela en sträng i kolumner:

select date,
       substring_index(cost, '-', 1) type_a,
       case when cost regexp '.*-' then
                 substring_index(substring_index(cost, '-', 2), '-', -1)
            else ''
       end type_b,
       case when cost regexp '.*-.*-' then
            substring_index(substring_index(cost, '-', 3), '-', -1)
            else ''
       end type_c,
       case when cost regexp '.*-.*-.*-' then
            substring_index(substring_index(cost, '-', 4), '-', -1)
            else ''
       end type_d,
       case when cost regexp '.*-.*-.*-.*-' then
            substring_index(substring_index(cost, '-', 5), '-', -1)
            else ''
       end type_e
from rate_cost;

Om du kan ändra tabelldesignen är det bättre att skapa flera kolumner:

create table rate_cost (
    id int,
    rate int,
    hotel int,
    cost_type_a int,
    cost_type_b int,
    cost_type_c int,
    cost_type_d int,
    cost_type_e int,
    date date);



  1. Utdata till CSV i postgres med dubbla citattecken

  2. SKAPA TYP på MySQL

  3. Oracle:Hur tar man reda på om det finns en väntande transaktion?

  4. Kan inte komma åt förbefolkad SQLite-databas med PhoneGap/Cordova i Android