Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Is it possible in one Select Statement?
Message
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00614551
Message ID:
00614575
Views:
16
This message has been marked as the solution to the initial question of the thread.
Hi, is this what you want to calculate
Select supplier, count(days) as all_records,;
		sum(Iif(days<=2,1,0)) as count_1_2,;
		sum(Iif(days<=2,1,0))/count(days)*100 as perc_1_2,;
		sum(Iif(Between(days, 3, 6),1,0)) as count_3_6,;
		sum(Iif(Between(days, 3, 6),1,0))/count(days)*100 as perc_3_6,;
		sum(Iif(days>=7,1,0)) as count_7_more,;
		sum(Iif(days>=7,1,0))/count(days)*100 as perc_7_more;
		from test group by supplier
my table is called test, so put there your real table name
Venelina Jordanova

Outsourcing IT Services Ltd.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform