hye everyone..i just want to share my problem using php..:$
i have data for field total
i.e total = (2,3,4,5,62,45,67,89,10,23,11,23,98,12)
from all data i want 5 max values only. please help me to meet the solution.:)
hye everyone..i just want to share my problem using php..:$
i have data for field total
i.e total = (2,3,4,5,62,45,67,89,10,23,11,23,98,12)
from all data i want 5 max values only. please help me to meet the solution.:)
What are you looking for, how to do this with a query ? Can you show the code you have so far ?
actually im looking the max value from my table (grandtotal). i just want to display 5 values from that.
It'll probably be something like this:
SELECT total FROM grandtotal ORDER BY total DESC LIMIT 5
Did you want just the MAXimum value out of that set of numbers you provided us??
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.