Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Select records that fall 3 consecutive days within a wee
Message
 
 
À
22/12/2003 01:17:35
Hilmar Zonneveld
Independent Consultant
Cochabamba, Bolivie
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00861173
Message ID:
00861363
Vues:
27
Hilmar, this is a repeat post of:
Re: Selecting records that fall within a week Thread #858448 Message #858454

We both made the similar suggestions:
*- Yours:
select * ;
	from MyTable ;
	where MyDate + 1 in (select MyDate from MyTable) ;
		and MyDate + 2 in (select MyDate from MyTable)

*- Mine:
Select * ;
	From Test ;
	Into Cursor curResults ;
	Where lFlag ;
		And dTest + 1 In (Select dTest From Test Where lFlag) ;
		And dTest + 2 In (Select dTest From Test Where lFlag)
I wonder why Evelyn chose to ignore my questions.
censored.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform