sql >> Database teknologi >  >> RDS >> PostgreSQL

Multiple formel på PostgreSQL

SQLFiddle

select
  2.5*((r-i)/(r+(6*i)-(7.5*n)+1)) as tera,
  (r-(2*i)-n)/(r+(2*i)-n) as tera2
from
  (
  select
    sum(case when wavelength between 340 and 345 then reflectance end) as r,
    sum(case when wavelength between 350 and 355 then reflectance end) as i,
    sum(case when wavelength between 360 and 365 then reflectance end) as n
  from
    test
  ) vars

For flere borde kan du bruge noget som:

select
  table_name,
  2.5*((r-i)/(r+(6*i)-(7.5*n)+1)) as tera,
  (r-(2*i)-n)/(r+(2*i)-n) as tera2
from
  (
  select
    table_name,
    sum(case when wavelength between 340 and 345 then reflectance end) as r,
    sum(case when wavelength between 350 and 355 then reflectance end) as i,
    sum(case when wavelength between 360 and 365 then reflectance end) as n
  from
    (
      select 'table 1' as table_name, * from test
      union all
      select 'table 2', * from test
      union all
      select 'table 3', * from test      
      union all
      select 'table 4', * from test  
    ) as all_tables
  group by
    table_name
  ) vars

SQLFiddle

Du skal blot ændre tabelnavne til dine faktiske navne og gentage union all så mange gange du har brug for.



  1. Er der overhovedet at kryptere oracle-lagrede procedurer?(Oracle 11g)

  2. Hvorfor er visse typer forberedte forespørgsler ved hjælp af PDO i PHP med MySQL langsomme?

  3. Sådan pivoterer du dynamisk med dato som kolonne

  4. Vis mysql-data i formateret tabel