Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Filtering without Group By and Having ?
Message
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Filtering without Group By and Having ?
Miscellaneous
Thread ID:
00590837
Message ID:
00590837
Views:
74
I have a table with a status column value of "Ready for processing..." or "Processing complete...". Some rows have both values, others have just the "Ready for processing..." value. I want to find those rows that just have the first value. But I can't use group by or having. Can anyone recommend a fast way to get around this?
Select iBatchID , cFileName , cStatusDesc From xxx ;
	Where cFileName like '\\vanbustest\SCCFiles$\scc\staging\dev\standard\01102301.120%' ;
	and cStatusDesc not like 'Ready for processing%' ;
Group by iBatchID ;
Having cStatusDesc not like 'Processing complete%'
Next
Reply
Map
View

Click here to load this message in the networking platform