bpco e dato fumo aggiornato
2 partecipanti
Pagina 1 di 1
bpco e dato fumo aggiornato
Salve questa query estrae tutte le registrazioni del dato fumo per cui se un paziente che non fumava e poi ha iniziato a fumare e poi ha smesso di fumare estrae contemporaneamente "fumo no" e "fumo si" e "fumo ex". Come si fa ad estrarre in queta query soltanto l'ultimo dato fumo? E ancora, non per questa query, ma in generale, è possibile estrarre i pazienti a cui non è stato registrato nessun dato fumo? grazie
select distinct p.cognome cognome, p.nome nome,
v.codmedico codice_medico,
days(p.nascita, today())/365 eta, p.sesso sesso,
today() data_odierna,
(select count(a.codice) from cart_accert a
where a.codice=p.codice and a.ac_des like '%spirometria%'
group by a.codice) ____Tot_spirometria____,
(select count(a.codice) from cart_accert a
where a.codice=p.codice and a.ac_des
like '%spirometria%'
and a.data_open between today()-455 and today() group by a.codice) ____Tot_spirometria_15mesi___,
(select count(a.ac_val) from cart_accert a
where a.codice=p.codice and a.ac_des
like '%spirometria%' and a.ac_val is not null group by a.codice)
___N_spirometria_conreferto___,
(select avg(a.ac_val) from cart_accert a where a.codice=p.codice
and a.ac_des like '%spirometria%' and
a.data_open between today()-1095 and today()
and a.ac_val is not null group by a.codice) ______media_spirometria_3anni______,
(select a.ac_val from cart_accert a
where a.codice=p.codice and a.ac_des like '%spirometria%'
and (a.ac_val is not null)
and not exists (select b.codice from cart_accert b where a.codice=b.codice and b.ac_des like '%spirometria%' and
(b.data_open>a.data_open or (b.data_open=a.data_open and b.rowid>a.rowid))
and b.ac_val is not null)
and a.data_open between today()-455 and today() ) ______VEMS_spirometria_ultima15mesi______,
(select distinct 'fumoEX' from cart_accert a
where a.codice=p.codice and a.ac_des like 'fumo'
and (a.ac_val like 'm' or a.ac_val like 'z'
or a.ac_val like 'e' or a.ac_val like 'f' or a.ac_val like 'u')) ____fumoEX____,
(select distinct 'fumoNO' from cart_accert a
where a.codice=p.codice and a.ac_des like 'fumo'
and (a.ac_val like 'x' or a.ac_val like 'n')) ____fumoNO____,
(select distinct 'fumoSI' from cart_accert a
where a.codice=p.codice and a.ac_des like 'fumo'
and (a.ac_val like 'p' or a.ac_val
like 's' or a.ac_val like '1' or a.ac_val like '2' or a.ac_val like '3')) ____fumoSI____,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03%'
and a.data_open between today()-365 and today()) ___ter_beta2_cort_ultimoanno___,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03DC%'
and a.data_open between today()-365 and today()) ___ter_antileucotr_ultimoanno___,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03AC02%'
and a.data_open between today()-365 and today()) ___ter_salbutamolo_ultimoanno___,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03AK07%'
and a.data_open between today()-365 and today()) ___ter_formo_ste___,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03AK06%'
and a.data_open between today()-365 and today()) ___ter_salme_fluti___,
(select distinct 'si' from cart_vaccini a
where a.codice=p.codice
and a.va_tipo like '%influenza%'
and a.data_open between today()-425 and today()) ___vaccino_influenza___,
(select distinct 'si' from cart_vaccini a
where a.codice=p.codice
and a.va_tipo like '%pneumococco%'
and a.data_open between today()-1885 and today()) __vaccino_pneumococco__
from pazienti p , nos_002 n, cart_pazpbl c, v_pazienti v
where p.codice=n.codice
and c.codice=n.codice
and v.codice=p.codice
and (c.cp_code like '496%' or c.cp_code like '492.1%')
and n.pa_drevoca is null
and p.decesso is null
and p.pa_convenzione not like 'l'
order by p.cognome, p.nome
select distinct p.cognome cognome, p.nome nome,
v.codmedico codice_medico,
days(p.nascita, today())/365 eta, p.sesso sesso,
today() data_odierna,
(select count(a.codice) from cart_accert a
where a.codice=p.codice and a.ac_des like '%spirometria%'
group by a.codice) ____Tot_spirometria____,
(select count(a.codice) from cart_accert a
where a.codice=p.codice and a.ac_des
like '%spirometria%'
and a.data_open between today()-455 and today() group by a.codice) ____Tot_spirometria_15mesi___,
(select count(a.ac_val) from cart_accert a
where a.codice=p.codice and a.ac_des
like '%spirometria%' and a.ac_val is not null group by a.codice)
___N_spirometria_conreferto___,
(select avg(a.ac_val) from cart_accert a where a.codice=p.codice
and a.ac_des like '%spirometria%' and
a.data_open between today()-1095 and today()
and a.ac_val is not null group by a.codice) ______media_spirometria_3anni______,
(select a.ac_val from cart_accert a
where a.codice=p.codice and a.ac_des like '%spirometria%'
and (a.ac_val is not null)
and not exists (select b.codice from cart_accert b where a.codice=b.codice and b.ac_des like '%spirometria%' and
(b.data_open>a.data_open or (b.data_open=a.data_open and b.rowid>a.rowid))
and b.ac_val is not null)
and a.data_open between today()-455 and today() ) ______VEMS_spirometria_ultima15mesi______,
(select distinct 'fumoEX' from cart_accert a
where a.codice=p.codice and a.ac_des like 'fumo'
and (a.ac_val like 'm' or a.ac_val like 'z'
or a.ac_val like 'e' or a.ac_val like 'f' or a.ac_val like 'u')) ____fumoEX____,
(select distinct 'fumoNO' from cart_accert a
where a.codice=p.codice and a.ac_des like 'fumo'
and (a.ac_val like 'x' or a.ac_val like 'n')) ____fumoNO____,
(select distinct 'fumoSI' from cart_accert a
where a.codice=p.codice and a.ac_des like 'fumo'
and (a.ac_val like 'p' or a.ac_val
like 's' or a.ac_val like '1' or a.ac_val like '2' or a.ac_val like '3')) ____fumoSI____,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03%'
and a.data_open between today()-365 and today()) ___ter_beta2_cort_ultimoanno___,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03DC%'
and a.data_open between today()-365 and today()) ___ter_antileucotr_ultimoanno___,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03AC02%'
and a.data_open between today()-365 and today()) ___ter_salbutamolo_ultimoanno___,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03AK07%'
and a.data_open between today()-365 and today()) ___ter_formo_ste___,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03AK06%'
and a.data_open between today()-365 and today()) ___ter_salme_fluti___,
(select distinct 'si' from cart_vaccini a
where a.codice=p.codice
and a.va_tipo like '%influenza%'
and a.data_open between today()-425 and today()) ___vaccino_influenza___,
(select distinct 'si' from cart_vaccini a
where a.codice=p.codice
and a.va_tipo like '%pneumococco%'
and a.data_open between today()-1885 and today()) __vaccino_pneumococco__
from pazienti p , nos_002 n, cart_pazpbl c, v_pazienti v
where p.codice=n.codice
and c.codice=n.codice
and v.codice=p.codice
and (c.cp_code like '496%' or c.cp_code like '492.1%')
and n.pa_drevoca is null
and p.decesso is null
and p.pa_convenzione not like 'l'
order by p.cognome, p.nome
nanci giacinto- Membro Junior
- Messaggi : 128
Punti : 5208
Voti per importanza dei messaggi : -1
Data d'iscrizione : 02.03.11
Re: bpco e dato fumo aggiornato
Forse potrebbe esserti utile la seguente estrazione per l'ultimo dato fumo (La parte in rosso specifica solo l'ultimo dato):
Select cognome, nome,
CAST((case a.ac_val
WHEN 'O' THEN 'fumatore occasionale'
WHEN 'V' THEN 'fumatore passivo'
WHEN '1' THEN 'meno di 10 sigarette al giorno'
WHEN '2' THEN 'tra 10 e 20 sigarette al giorno'
WHEN '3' THEN 'oltre 20 sigarette al giorno'
WHEN 'X' THEN 'mai fumato e mai fumerà'
WHEN 'N' THEN 'mai fumato'
WHEN 'E' THEN 'ex fumatore da oltre 1 anno'
WHEN 'M' THEN 'ex fumatore'
WHEN 'F' THEN 'ex forte fumatore da oltre 10 anni'
WHEN 'Z' THEN 'ex forte fumatore da oltre 1 anno'
WHEN 'U' THEN 'ex forte fumatore'
WHEN 'P' THEN 'fumatore di pipa'
WHEN 'S' THEN 'fumatore di sigaro'
ELSE 'Non_Registrato' END) as char(31)) Tipo_fumatore
FROM cart_accert a , pazienti p
WHERE a.codice=p.codice AND a.ac_code like '2832' and not exists (select b.codice from cart_accert b where a.codice = b.codice and b.ac_code Like '2832' and (b.data_open>a.data_open or (b.data_open=a.data_open and b.rowid>a.rowid)) and b.ac_val is not null)
ORDER BY 3
Per la seconda richiesta basta estrarre tutti i pazienti il cui codice non è in questa estrazione sopra riportata.
(es. Select cognome nome, ....... FROM pazienti p WHERE codice NOT IN (Select b.codice FROM cart_accert a , pazienti p WHERE a.codice=p.codice AND a.ac_code like '2832' and not exists (select b.codice from cart_accert b where a.codice = b.codice and b.ac_code Like '2832' and (b.data_open>a.data_open or (b.data_open=a.data_open and b.rowid>a.rowid)) and b.ac_val is not null))
Naturalmente occorre adattare la sintassi al caso specifico.
Select cognome, nome,
CAST((case a.ac_val
WHEN 'O' THEN 'fumatore occasionale'
WHEN 'V' THEN 'fumatore passivo'
WHEN '1' THEN 'meno di 10 sigarette al giorno'
WHEN '2' THEN 'tra 10 e 20 sigarette al giorno'
WHEN '3' THEN 'oltre 20 sigarette al giorno'
WHEN 'X' THEN 'mai fumato e mai fumerà'
WHEN 'N' THEN 'mai fumato'
WHEN 'E' THEN 'ex fumatore da oltre 1 anno'
WHEN 'M' THEN 'ex fumatore'
WHEN 'F' THEN 'ex forte fumatore da oltre 10 anni'
WHEN 'Z' THEN 'ex forte fumatore da oltre 1 anno'
WHEN 'U' THEN 'ex forte fumatore'
WHEN 'P' THEN 'fumatore di pipa'
WHEN 'S' THEN 'fumatore di sigaro'
ELSE 'Non_Registrato' END) as char(31)) Tipo_fumatore
FROM cart_accert a , pazienti p
WHERE a.codice=p.codice AND a.ac_code like '2832' and not exists (select b.codice from cart_accert b where a.codice = b.codice and b.ac_code Like '2832' and (b.data_open>a.data_open or (b.data_open=a.data_open and b.rowid>a.rowid)) and b.ac_val is not null)
ORDER BY 3
Per la seconda richiesta basta estrarre tutti i pazienti il cui codice non è in questa estrazione sopra riportata.
(es. Select cognome nome, ....... FROM pazienti p WHERE codice NOT IN (Select b.codice FROM cart_accert a , pazienti p WHERE a.codice=p.codice AND a.ac_code like '2832' and not exists (select b.codice from cart_accert b where a.codice = b.codice and b.ac_code Like '2832' and (b.data_open>a.data_open or (b.data_open=a.data_open and b.rowid>a.rowid)) and b.ac_val is not null))
Naturalmente occorre adattare la sintassi al caso specifico.
bpco e dato fumo aggiornato
Grazie per le query funzionano, ma come si integra la tua prima query in quella da me proposta?, a me serve l'ultimo dato fumo integrato con tutti gli altri dati estratti dalla query da me proposta. Per quanto riguarda la tua seconda query funziona bene ma estrae tutti gli assisti dell'archivio pure quelli deceduti e con revoca anche se io seleziono solo pz attivi SSN. grazie
nanci giacinto- Membro Junior
- Messaggi : 128
Punti : 5208
Voti per importanza dei messaggi : -1
Data d'iscrizione : 02.03.11
Re: bpco e dato fumo aggiornato
select distinct p.cognome cognome, p.nome nome,
v.codmedico codice_medico,
days(p.nascita, today())/365 eta, p.sesso sesso,
today() data_odierna,
(select count(a.codice) from cart_accert a
where a.codice=p.codice and a.ac_des like '%spirometria%'
group by a.codice) ____Tot_spirometria____,
(select count(a.codice) from cart_accert a
where a.codice=p.codice and a.ac_des
like '%spirometria%'
and a.data_open between today()-455 and today() group by a.codice) ____Tot_spirometria_15mesi___,
(select count(a.ac_val) from cart_accert a
where a.codice=p.codice and a.ac_des
like '%spirometria%' and a.ac_val is not null group by a.codice)
___N_spirometria_conreferto___,
(select avg(a.ac_val) from cart_accert a where a.codice=p.codice
and a.ac_des like '%spirometria%' and
a.data_open between today()-1095 and today()
and a.ac_val is not null group by a.codice) ______media_spirometria_3anni______,
(select a.ac_val from cart_accert a
where a.codice=p.codice and a.ac_des like '%spirometria%'
and (a.ac_val is not null)
and not exists (select b.codice from cart_accert b where a.codice=b.codice and b.ac_des like '%spirometria%' and
(b.data_open>a.data_open or (b.data_open=a.data_open and b.rowid>a.rowid))
and b.ac_val is not null)
and a.data_open between today()-455 and today() ) ______VEMS_spirometria_ultima15mesi______,
(Select
CAST((case a.ac_val
WHEN 'O' THEN 'fumatore occasionale'
WHEN 'V' THEN 'fumatore passivo'
WHEN '1' THEN 'meno di 10 sigarette al giorno'
WHEN '2' THEN 'tra 10 e 20 sigarette al giorno'
WHEN '3' THEN 'oltre 20 sigarette al giorno'
WHEN 'X' THEN 'mai fumato e mai fumerà'
WHEN 'N' THEN 'mai fumato'
WHEN 'E' THEN 'ex fumatore da oltre 1 anno'
WHEN 'M' THEN 'ex fumatore'
WHEN 'F' THEN 'ex forte fumatore da oltre 10 anni'
WHEN 'Z' THEN 'ex forte fumatore da oltre 1 anno'
WHEN 'U' THEN 'ex forte fumatore'
WHEN 'P' THEN 'fumatore di pipa'
WHEN 'S' THEN 'fumatore di sigaro'
ELSE 'Non_Registrato' END) as char(35))
FROM cart_accert a
WHERE a.codice=p.codice AND a.ac_des like 'FUMO' and not exists (select b.codice from cart_accert b where a.codice = b.codice and b.ac_des Like 'FUMO' and (b.data_open>a.data_open or (b.data_open=a.data_open and b.rowid>a.rowid)) and b.ac_val is not null)) _Fumo_,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03%'
and a.data_open between today()-365 and today()) ___ter_beta2_cort_ultimoanno___,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03DC%'
and a.data_open between today()-365 and today()) ___ter_antileucotr_ultimoanno___,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03AC02%'
and a.data_open between today()-365 and today()) ___ter_salbutamolo_ultimoanno___,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03AK07%'
and a.data_open between today()-365 and today()) ___ter_formo_ste___,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03AK06%'
and a.data_open between today()-365 and today()) ___ter_salme_fluti___,
(select distinct 'si' from cart_vaccini a
where a.codice=p.codice
and a.va_tipo like '%influenza%'
and a.data_open between today()-425 and today()) ___vaccino_influenza___,
(select distinct 'si' from cart_vaccini a
where a.codice=p.codice
and a.va_tipo like '%pneumococco%'
and a.data_open between today()-1885 and today()) __vaccino_pneumococco__
from pazienti p , nos_002 n, cart_pazpbl c, v_pazienti v
where p.codice=n.codice
and c.codice=n.codice
and v.codice=p.codice
and (c.cp_code like '496%' or c.cp_code like '492.1%')
and n.pa_drevoca is null
and p.decesso is null
and p.pa_convenzione not like 'l'
order by p.cognome, p.nome
Per la seconda richiesta:
Select cognome, nome FROM pazienti p, nos_002 n WHERE p.codice=n.codice AND (n.pa_drevoca is null OR n.pa_drevoca > Today()) and p.decesso is null
AND p.codice NOT IN (Select a.codice FROM cart_accert a , pazienti p WHERE a.codice=p.codice AND a.ac_code like '2832' and not exists (select b.codice from cart_accert b where a.codice = b.codice and b.ac_code Like '2832' and (b.data_open>a.data_open or (b.data_open=a.data_open and b.rowid>a.rowid)) and b.ac_val is not null))
ORDER BY 1,2
v.codmedico codice_medico,
days(p.nascita, today())/365 eta, p.sesso sesso,
today() data_odierna,
(select count(a.codice) from cart_accert a
where a.codice=p.codice and a.ac_des like '%spirometria%'
group by a.codice) ____Tot_spirometria____,
(select count(a.codice) from cart_accert a
where a.codice=p.codice and a.ac_des
like '%spirometria%'
and a.data_open between today()-455 and today() group by a.codice) ____Tot_spirometria_15mesi___,
(select count(a.ac_val) from cart_accert a
where a.codice=p.codice and a.ac_des
like '%spirometria%' and a.ac_val is not null group by a.codice)
___N_spirometria_conreferto___,
(select avg(a.ac_val) from cart_accert a where a.codice=p.codice
and a.ac_des like '%spirometria%' and
a.data_open between today()-1095 and today()
and a.ac_val is not null group by a.codice) ______media_spirometria_3anni______,
(select a.ac_val from cart_accert a
where a.codice=p.codice and a.ac_des like '%spirometria%'
and (a.ac_val is not null)
and not exists (select b.codice from cart_accert b where a.codice=b.codice and b.ac_des like '%spirometria%' and
(b.data_open>a.data_open or (b.data_open=a.data_open and b.rowid>a.rowid))
and b.ac_val is not null)
and a.data_open between today()-455 and today() ) ______VEMS_spirometria_ultima15mesi______,
(Select
CAST((case a.ac_val
WHEN 'O' THEN 'fumatore occasionale'
WHEN 'V' THEN 'fumatore passivo'
WHEN '1' THEN 'meno di 10 sigarette al giorno'
WHEN '2' THEN 'tra 10 e 20 sigarette al giorno'
WHEN '3' THEN 'oltre 20 sigarette al giorno'
WHEN 'X' THEN 'mai fumato e mai fumerà'
WHEN 'N' THEN 'mai fumato'
WHEN 'E' THEN 'ex fumatore da oltre 1 anno'
WHEN 'M' THEN 'ex fumatore'
WHEN 'F' THEN 'ex forte fumatore da oltre 10 anni'
WHEN 'Z' THEN 'ex forte fumatore da oltre 1 anno'
WHEN 'U' THEN 'ex forte fumatore'
WHEN 'P' THEN 'fumatore di pipa'
WHEN 'S' THEN 'fumatore di sigaro'
ELSE 'Non_Registrato' END) as char(35))
FROM cart_accert a
WHERE a.codice=p.codice AND a.ac_des like 'FUMO' and not exists (select b.codice from cart_accert b where a.codice = b.codice and b.ac_des Like 'FUMO' and (b.data_open>a.data_open or (b.data_open=a.data_open and b.rowid>a.rowid)) and b.ac_val is not null)) _Fumo_,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03%'
and a.data_open between today()-365 and today()) ___ter_beta2_cort_ultimoanno___,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03DC%'
and a.data_open between today()-365 and today()) ___ter_antileucotr_ultimoanno___,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03AC02%'
and a.data_open between today()-365 and today()) ___ter_salbutamolo_ultimoanno___,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03AK07%'
and a.data_open between today()-365 and today()) ___ter_formo_ste___,
(select distinct 'si' from cart_terap a
where a.codice=p.codice and a.co_atc like 'R03AK06%'
and a.data_open between today()-365 and today()) ___ter_salme_fluti___,
(select distinct 'si' from cart_vaccini a
where a.codice=p.codice
and a.va_tipo like '%influenza%'
and a.data_open between today()-425 and today()) ___vaccino_influenza___,
(select distinct 'si' from cart_vaccini a
where a.codice=p.codice
and a.va_tipo like '%pneumococco%'
and a.data_open between today()-1885 and today()) __vaccino_pneumococco__
from pazienti p , nos_002 n, cart_pazpbl c, v_pazienti v
where p.codice=n.codice
and c.codice=n.codice
and v.codice=p.codice
and (c.cp_code like '496%' or c.cp_code like '492.1%')
and n.pa_drevoca is null
and p.decesso is null
and p.pa_convenzione not like 'l'
order by p.cognome, p.nome
Per la seconda richiesta:
Select cognome, nome FROM pazienti p, nos_002 n WHERE p.codice=n.codice AND (n.pa_drevoca is null OR n.pa_drevoca > Today()) and p.decesso is null
AND p.codice NOT IN (Select a.codice FROM cart_accert a , pazienti p WHERE a.codice=p.codice AND a.ac_code like '2832' and not exists (select b.codice from cart_accert b where a.codice = b.codice and b.ac_code Like '2832' and (b.data_open>a.data_open or (b.data_open=a.data_open and b.rowid>a.rowid)) and b.ac_val is not null))
ORDER BY 1,2
bpco e dato fumo aggiornato
GRAZIE LE QUERY FUNZIONANO. LA SECONDA PERO' ESTRAE ANCHE GLI ASSISTITI REGISTRATI NON SOLTANTO COME "ASSISTITO SSN" MA ANCHE QUELLI REGISTRATI COME "ASSISTITO SPECIALE, LIBERA PROFESSIONE, ALTRO" CHE NON SONO ATTIVI E SONO TANTI. HO CERCATO NELLE TABELLE MA NON HO TROVATO QUESTI CAMPI PER MODIFICARE LA TUA QUERY. SE NON C'E' MODO DI ESCLUDERLI DALLA ESTRAZIONE DOVRO' ESTRARLI A PARTE E METTERE UNA DATA DI REVOCA PER NON FARLI ESTRARRE DALLA QUERY, HO GIA' PROVATO E COSI' FUNZIONA.
nanci giacinto- Membro Junior
- Messaggi : 128
Punti : 5208
Voti per importanza dei messaggi : -1
Data d'iscrizione : 02.03.11
Re: bpco e dato fumo aggiornato
nanci giacinto ha scritto:GRAZIE LE QUERY FUNZIONANO. LA SECONDA PERO' ESTRAE ANCHE GLI ASSISTITI REGISTRATI NON SOLTANTO COME "ASSISTITO SSN" MA ANCHE QUELLI REGISTRATI COME "ASSISTITO SPECIALE, LIBERA PROFESSIONE, ALTRO" CHE NON SONO ATTIVI E SONO TANTI. HO CERCATO NELLE TABELLE MA NON HO TROVATO QUESTI CAMPI PER MODIFICARE LA TUA QUERY. SE NON C'E' MODO DI ESCLUDERLI DALLA ESTRAZIONE DOVRO' ESTRARLI A PARTE E METTERE UNA DATA DI REVOCA PER NON FARLI ESTRARRE DALLA QUERY, HO GIA' PROVATO E COSI' FUNZIONA.
Basta aggiungere AND p.Pa_convenzione ='S'
Select cognome, nome FROM pazienti p, nos_002 n WHERE p.codice=n.codice AND (n.pa_drevoca is null OR n.pa_drevoca > Today()) and p.decesso is null AND p.Pa_convenzione ='S'
AND p.codice NOT IN (Select a.codice FROM cart_accert a , pazienti p WHERE a.codice=p.codice AND a.ac_code like '2832' and not exists (select b.codice from cart_accert b where a.codice = b.codice and b.ac_code Like '2832' and (b.data_open>a.data_open or (b.data_open=a.data_open and b.rowid>a.rowid)) and b.ac_val is not null))
ORDER BY 1,2
BPCO E DATO FUMO AGGIORNATO
BUONA SERA OK PERFETTO GRAZIE
nanci giacinto- Membro Junior
- Messaggi : 128
Punti : 5208
Voti per importanza dei messaggi : -1
Data d'iscrizione : 02.03.11
Argomenti simili
» Spesa per antibiotici in un dato mese
» come estrapolare i pazienti residenti in u n dato comune
» Millewin - Unofficial utilities
» consgli fumo
» BPCO cortisone in diabetici
» come estrapolare i pazienti residenti in u n dato comune
» Millewin - Unofficial utilities
» consgli fumo
» BPCO cortisone in diabetici
Pagina 1 di 1
Permessi in questa sezione del forum:
Non puoi rispondere agli argomenti in questo forum.