Oracle
 sql >> база данни >  >> RDS >> Oracle

Нуждаете се от помощ за съхраняване на стойност от три колони

Да кажем, че искате да вмъкнете данни в таблица като:

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

Ако приемем, че вече имате заявка, която дава този резултат, може да имате нужда от:

insert into allEmailTable(id, mail)
with yourQuery(ID, client_p_email, client_s_email, customer_mail) as (
  select 703        , 'example@sqldat.com'           ,'example@sqldat.com'   , 'example@sqldat.com' from dual union all                                   
  select 623        , 'example@sqldat.com'         ,'example@sqldat.com'   ,  'example@sqldat.com' from dual union all                                      
  select 965        , 'example@sqldat.com'      ,'example@sqldat.com',  'example@sqldat.com' from dual union all                                        
  select 270        , 'example@sqldat.com'      ,'example@sqldat.com',  'example@sqldat.com' from dual union all                                         
  select 719        , 'example@sqldat.com'        ,'example@sqldat.com'   ,  'example@sqldat.com' 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 
     )

Резултатът:

SQL> select * from allEmailTable;

        ID MAIL
---------- --------------------
       270 example@sqldat.com
       270 example@sqldat.com
       270 example@sqldat.com
       623 example@sqldat.com
       623 example@sqldat.com
       703 example@sqldat.com
       703 example@sqldat.com
       703 example@sqldat.com
       719 example@sqldat.com
       719 example@sqldat.com
       719 example@sqldat.com
       965 example@sqldat.com

12 rows selected.

Вашето запитване ще бъде:

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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. отпечатайте начална и крайна дата в един ред за непрекъснати или припокриващи се периоди от време в oracle SQL

  2. Oracle Query дава грешка

  3. Oracle SYS_GUID не се променя

  4. Невалиден символ в низа на SQL заявка (ORA-00911)

  5. ORACLE - намиране на конкретен резултат в ЦИКЪЛ (ИЛИ ПОДОБЕН)