Changes between Version 2 and Version 3 of dev/moduloEventos


Ignore:
Timestamp:
01/06/15 13:45:43 (10 years ago)
Author:
luiz@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • dev/moduloEventos

    v2 v3  
    11[http://wiki.grupophorte.com.br/siga/wiki/dev Retornar]
     2
     3
     4== 14/10/2014 Luiz Bueno ==
     5 * Solicitação
     6
     7{{{
     8Ticket 2514 - Helpdesk (SIGA)
     9Precisamos de uma lista com e-mails da galera que participou do evento
     10Workshop de Fustal em Blumenau e Futsal e Futebol em Campinas.
     11}}}
     12
     13 * Solução
     14
     15{{{
     16Foi gerado um arquivo excel a partir da sql abaixo:
     17
     18select distinct oei.oferta_evento_inst_id,
     19poei.pessoa_tipo_id,
     20p.pessoa_id,
     21p.nome,
     22p.email
     23from oferta_evento_inst as oei
     24join pessoa_oferta_evento_inst as poei on oei.oferta_evento_inst_id=poei.oferta_evento_inst_id
     25join pessoa_tipo as pt on poei.pessoa_tipo_id=pt.pessoa_tipo_id
     26join pessoa as p on pt.pessoa_id=p.pessoa_id
     27where oei.evento_inst_id = '11'
     28
     29e anexado ao comentário da solicitação
     30}}}
     31
    232
    333== 14/10/2014 Luiz Bueno ==