sql >> Databáze >  >> RDS >> Oracle

Potřebujete pomoc s uložením hodnoty ze tří sloupců

Řekněme, že chcete vložit data do tabulky jako:

create table allEmailTable  (id number, mail varchar2(100))

Za předpokladu, že již máte dotaz, který dává tento výsledek, možná budete potřebovat:

insert into allEmailTable(id, mail)
with yourQuery(ID, client_p_email, client_s_email, customer_mail) as (
  select 703        , '[email protected]'           ,'[email protected]'   , '[email protected]' from dual union all                                   
  select 623        , '[email protected]'         ,'[email protected]'   ,  '[email protected]' from dual union all                                      
  select 965        , '[email protected]'      ,'[email protected]',  '[email protected]' from dual union all                                        
  select 270        , '[email protected]'      ,'[email protected]',  '[email protected]' from dual union all                                         
  select 719        , '[email protected]'        ,'[email protected]'   ,  '[email protected]' from dual
)
select distinct ID, mail
from (
      select id, client_p_email as mail from yourQuery UNION
      select id, client_s_email         from yourQuery UNION
      select id, customer_mail          from yourQuery 
     )

Výsledek:

SQL> select * from allEmailTable;

        ID MAIL
---------- --------------------
       270 [email protected]
       270 [email protected]
       270 [email protected]
       623 [email protected]
       623 [email protected]
       703 [email protected]
       703 [email protected]
       703 [email protected]
       719 [email protected]
       719 [email protected]
       719 [email protected]
       965 [email protected]

12 rows selected.

Váš dotaz bude:

insert into allEmailTable(id, mail)
with yourQuery(ID, client_p_email, client_s_email, customer_mail) as (
  SELECT DISTINCT 
                    clt.id,
                    clt.client_p_email,
                    clt.client_s_email,
                    cus.customer_mail
  from  client clt,
         customers cus
where clt.id=cus.id
)
select distinct ID, mail
from (
      select id, client_p_email as mail from yourQuery UNION
      select id, client_s_email         from yourQuery UNION
      select id, customer_mail          from yourQuery 
     )



  1. Jak vrátit všechna nedůvěryhodná omezení cizích klíčů na SQL Server (příklad T-SQL)

  2. Použít alias sloupce ve výpočtu vybraného příkazu Oracle SQL

  3. Postgres:získejte minimální, maximální a souhrnné hodnoty v jednom výběru

  4. Jak mám uložit GUID v tabulkách MySQL?