Requêtes SQL sous ACCESS
Fermé
Legendary27100
Messages postés
3
Date d'inscription
mercredi 4 avril 2012
Statut
Membre
Dernière intervention
17 avril 2012
-
4 avril 2012 à 15:48
OlivrT Messages postés 323 Date d'inscription lundi 2 novembre 2009 Statut Membre Dernière intervention 24 mai 2012 - 4 avril 2012 à 21:14
OlivrT Messages postés 323 Date d'inscription lundi 2 novembre 2009 Statut Membre Dernière intervention 24 mai 2012 - 4 avril 2012 à 21:14
A voir également:
- Requêtes SQL sous ACCESS
- Requête sql date supérieure à ✓ - Forum Programmation
- Access appdata - Guide
- Blob sql ✓ - Forum Webmastering
- Requête sql pix - Forum Python
- Acer quick access - Forum Logiciels
1 réponse
OlivrT
Messages postés
323
Date d'inscription
lundi 2 novembre 2009
Statut
Membre
Dernière intervention
24 mai 2012
36
4 avril 2012 à 21:14
4 avril 2012 à 21:14
Bonsoir,
sous quel format avez-vous sauvé vos dates ?
Essayer ceci :
SELECT ...
FROM etemptation_ReportMOD, Table1
WHERE (
CDate(etemptation_ReportMOD.JOUR) >=
CDate(Table1.DEB)
And
(
CDate(etemptation_ReportMOD.JOUR) <=
CDate(Table1.FIN)
)
ORDER BY etemptation_ReportMOD.JOUR;
ou ceci :
SELECT ...
FROM etemptation_ReportMOD, Table1
WHERE (
Format(etemptation_ReportMOD.JOUR,'DD/MM/YYYY')>=Format(Table1.DEB,'DD/MM/YYYY')
And ...
-
Krilin
« Je suis pas contre les excuses...je suis même prêt à en recevoir. » (Les grandes familles) :-)
sous quel format avez-vous sauvé vos dates ?
Essayer ceci :
SELECT ...
FROM etemptation_ReportMOD, Table1
WHERE (
CDate(etemptation_ReportMOD.JOUR) >=
CDate(Table1.DEB)
And
(
CDate(etemptation_ReportMOD.JOUR) <=
CDate(Table1.FIN)
)
ORDER BY etemptation_ReportMOD.JOUR;
ou ceci :
SELECT ...
FROM etemptation_ReportMOD, Table1
WHERE (
Format(etemptation_ReportMOD.JOUR,'DD/MM/YYYY')>=Format(Table1.DEB,'DD/MM/YYYY')
And ...
-
Krilin
« Je suis pas contre les excuses...je suis même prêt à en recevoir. » (Les grandes familles) :-)