Oracle+to_date

Oracle+to_date - Programmation

Marsh Posté le 28-12-2001 à 15:20:16    

SELECT SP.NUM_CARTE AS "NoCarte",
TO_CHAR(SP.DATE_APPEL,'DD/MM/YYYY';) AS "Date Appel",
TO_CHAR(SP.DATE_APPEL,'HH24:MI:SS';) AS "Heure Appel"  
FROM POPLG.ST_SPONSOR SP  
WHERE (SP.DATE_APPEL BETWEEN  
TO_DATE('02:00:00','HH24:MI:SS';) AND  
TO_DATE('19:00:00','HH24:MI:SS';))
 
J'essaie de sélectionner toutes les lignes dont l'heure d'appel est comprise entre 02h et 19h quel que soit le jour
Si qqun a une idee??

Reply

Marsh Posté le 28-12-2001 à 15:20:16   

Reply

Marsh Posté le 28-12-2001 à 16:45:40    

ben moi je ferais
 
select SP.NUM_CARTE, SP.SP_DATE_APPEL
from POPLG.ST_SPONSOR SP
where SP.DATE_APPEL >= to_date('02:00','HH24:MM';)
and SP_DATE_APPEL <= to_date('19:00','HH24:MM';)
 
 
try it...


---------------
Fan de GodBout et de Meuh
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed