Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Select records that fall 3 consecutive days within a wee
Message
 
 
To
22/12/2003 01:17:35
Hilmar Zonneveld
Independent Consultant
Cochabamba, Bolivia
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00861173
Message ID:
00861363
Views:
28
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.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform