Tagged Questions
The max tag has no wiki summary.
65
votes
15answers
47k views
Is there a Max function in SQL Server that takes two values like Math.Max in .NET?
I want to write a query like this:
SELECT o.OrderId, MAX(o.NegotiatedPrice, o.SuggestedPrice)
FROM Order o
But this isn't how the MAX function works, right? It is an aggregate function so it ...
45
votes
9answers
145k views
How can I SELECT rows with MAX(Column value), DISTINCT by another column in SQL?
My table is:
id home datetime player resource
---|-----|------------|--------|---------
1 | 10 | 04/03/2009 | john | 399
2 | 11 | 04/03/2009 | juliet | 244
5 | 12 | 04/03/2009 | ...
26
votes
2answers
5k views
How to get the max of two values in MySQL?
I tried but failed:
mysql> select max(1,0);
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual
that corresponds to your MySQL server version for the right syntax to use ...
22
votes
3answers
19k views
CSS Div stretch 100% page height
I have a navigation bar on the left hand side of my page, and I want it to stretch to 100% of the page height. Not just the height of the viewport, but including the areas hidden until you scroll. I ...
18
votes
4answers
786 views
Generate a random number with max, min and mean(average) in Java
I need to generate random numbers with following properties.
Min should be 200
Max should be 20000
Average(mean) is 500.
Optional: 75th percentile to be 5000
Definitely it is not uniform ...
15
votes
7answers
9k views
MIN and MAX in C
Where are MIN and MAX defined in C, if at all?
What is the best way to implement these, as generically and type safely as possible? (Compiler extensions/builtins for mainstream compilers preferred.)
15
votes
5answers
9k views
LINQ: How to perform .Max() on a property of all objects in a collection and return the object with maximum value
I have a list of objects that have to int properties. The list is the output of anothre linq query. The object:
public class DimensionPair {
public int Height { get; set; }
public int Width { ...
13
votes
5answers
2k views
Good way to get the key of the highest value of a Dictionary in C#
I'm trying to get the key of the maximum value in the Dictionary<string, double> results.
This is what I have so far:
double max = results.Max(kvp => kvp.Value);
return results.Where(kvp ...
11
votes
8answers
364 views
Great projects, works, people in intersection of programming and art/music?
In a recent question I was introduced to the work of André Michelle, which blew me away. What other great people or works do you know in the fields of art and music? As someone with a love for ...
9
votes
10answers
469 views
Why Math.min() > Math.max()?
When I type in an array into the parameter of the javascript math minimum and maximum functions, it returns the correct value:
console.log( Math.min( 5 ) ); // 5
console.log( Math.max( 2 ) ); // 2
...
9
votes
2answers
488 views
C extension: <? and >? operators
I observed that there was at some point a <? and >? operator in GCC. How can I use these under GCC 4.5? Have they been removed, and if so, when?
Offset block_count = (cpfs->geo.block_size - ...
8
votes
4answers
501 views
Is max(a,b) defined in stdlib.h or not?
I'm using two computers, each with a different version of visual studio. On the visual studio 2008 computer my code compiles. On the visual 2010 computer my code doesn't compile because I'm using the ...
7
votes
3answers
351 views
Is it possible to get the 2 largest numbers in a list using a single pass?
Is it possible to find the 2 largest numbers in an array, and only loop through the collection once?
I had this as an interview question and didn't really get it in time.
7
votes
7answers
2k views
What is the easiest way to get a key with the highest value from a hash in Perl?
What is the easiest way to get a key with the highest value from a hash in Perl?
7
votes
6answers
3k views
Countdown available spaces in a textarea with jquery or other?
I have a few areas on my site where I need to limit text input to X amount of characters and it's nice to show a number of spaces left while a user types in, like twitter does.
I found this jquery ...
7
votes
6answers
1k views
How to get the biggest numbers out from huge amount of numbers?
I'd like to get the largest 100 elements out from a list of at least 100000000 numbers.
I could sort the entire list and just take the last 100 elements from the sorted list, but that would be very ...
7
votes
8answers
10k views
Max of Sum in SQL
I have a list of stores, departments within the stores, and sales for each department, like so (created using max(sales) in a subquery, but that's not terribly important here I don't think):
toronto ...
6
votes
6answers
259 views
Minimum and maximum of the last 1000 values of the changing list
I'm creating an iterative algorithm (Monte Carlo method).
The algorithm returns a value on every iteration, creating a stream of values.
I need to analyze these values and stop the algorithm when say ...
6
votes
3answers
121 views
What is the equivalent of .Max() in jquery
I was wondering how can we write a jquery statement to get the max value of a property of matched elements.
in LINQ we say something like this:
var maxHeight = list.Max(a=> a.Height);
what is ...
6
votes
2answers
237 views
Best way to score current extremum in collection type
I’m currently a little tired so I might be missing the obvious.
I have a var _minVal: Option[Double], which shall hold the minimal value contained in a collection of Doubles (or None, if the ...
6
votes
5answers
118 views
How to use “Partition By” or “Max”?
I've the following table (my_data):
year | X | Y
-----+-----+-----
2010 | A | 10
2011 | A | 20
2011 | B | 99
2009 | C | 30
2010 | C | 40
what is the best / smallest SQL statement ...
6
votes
10answers
704 views
retrieve the 2 highest item from a list containing 100 000 integers
How can retrieve the 2 highest item from a list containing 100 000 integers.
You do understand without having to sort the entire list.
6
votes
11answers
3k views
Mathematically Find Max Value without Conditional Comparison
----------Updated ------------
codymanix and moonshadow have been a big help thus far. I was able to solve my problem using the equations and instead of using right shift I divided by 29. Because ...
5
votes
5answers
639 views
SQL DELETE - Maximum number of rows
What limit should be placed on the number of rows to delete in a SQL statement?
We need to delete from 1 to several hundred thousand rows and need to apply some sort of best practise limit in order ...
5
votes
2answers
114 views
C: finding the maximum and minimum of the type of an arithmetic expression
I need to find the maximum and minimum of an arbitrary C expression which has no side effects. The following macros work on my machine. Will they work on all platforms? If not, can they be modified to ...
5
votes
4answers
173 views
Number of assignments necessary to find the minimum value in an array?
Someone asked me a brainteaser, and I don't know; my knowledge slows down after amortized analysis, and in this case, this is O(n).
public int findMax(array) {
int count = 0;
int max = array[0];
...
5
votes
2answers
186 views
Find highest value in row and echo number and column name
After too many hours I can't find the answer to this.
First my table
id | one | two | three | four | five | galname
-------------------------------------------------
1 | 2 | 5 | 23 | 4 ...
5
votes
1answer
158 views
libusb-1.x VS openUsb
Have a few questions about libusb VS openusb
I'm the author of a project called Berry4all that allows tethering for Blackberries Via USB.
Cuurrently I'm using libusb-0.x but i'd like /need to ...
5
votes
4answers
488 views
Python: take max N elements from some list
Is there some function which would return me the N highest elements from some list?
I.e. if max(l) returns the single highest element, sth. like max(l, count=10) would return me a list of the 10 ...
5
votes
2answers
481 views
SQL Server: Select Max Limit 1 from Group
Using SQL Server. Ok, I'm making an in webpage cache system. I wanted to make a simple page rank system along with output. The problem is, I want to display the recordset with the highest relevance ...
5
votes
2answers
7k views
How can I find the maximum or minimum of a multi-dimensional matrix in MATLAB?
I have a 4D array of measurements in MATLAB. Each dimension represents a different parameter for the measurement. I want to find the maximum and minimum value and the index (i.e. which parameter) of ...
5
votes
2answers
2k views
warning C4003 and errors C2589 and C2059 on: x = std::numeric_limits<int>::max();
This line works correctly in a small test program, but in the program for which I want it, I get the following compiler complaints:
#include <limits>
x = std::numeric_limits<int>::max();
...
5
votes
11answers
17k views
Use of min and max functions in C++
From C++, are min and max preferable over fmin and fmax? For comparing two integers, do they provide basically the same functionality?
Do you tend to use one of these sets of functions or do you ...
5
votes
2answers
5k views
Javascript max() function for 3 numbers
I need to find the highest number from 3 different numbers. The only thing I've found is max() but you can only use 2 numbers.
Whats the best way?
5
votes
3answers
5k views
How might I find the largest number contained in a JavaScript array?
I have a simple JavaScript Array object containing a few numbers.
[267, 306, 108]
Is there a function that would find the largest number in this array?
4
votes
2answers
137 views
CakePHP find with MAX
Tables and Dummy Data
CREATE TABLE IF NOT EXISTS `messages` (
`id` int(11) unsigned NOT NULL auto_increment,
`user_id` int(11) unsigned NOT NULL,
`node_id` int(11) unsigned NOT NULL,
...
4
votes
3answers
721 views
What is the maximum length of an NSString object?
What is the maximum sized string that can be held in a NSString object?
Does this change dynamically?
4
votes
2answers
1k views
How to refresh a jQuery UI Slider after setting min or max values?
I have a ui.slider and change it's min and max values on runtime. But these changes only get reflected in the view, when I set the values afterwards too (which causes it to fire events that are not ...
4
votes
2answers
141 views
Why does select max(field) from table work so fast as compared to select min(field) from table, Oracle 9i
i ran into the chance of running a select max statement in Oracle 9i and it ran very fast.
select max(id) from audit_log;
select min(id) from audit_log;
However when running a select min, the ...
4
votes
3answers
45 views
Create an array with duplicated value from an array (PhP)
I want to create an new array with duplicated MAX value from an array
and put other duplicate value in an other array
$etudiant = array ('a'=>'2','b'=>'5', 'c'=>'6', 'd'=>'6', ...
4
votes
3answers
354 views
ASP.net Gridview highlight max values in multiple columns
I have a gridview that shows, for example, a baseball team's statistics. It's a standard sports stats grid - the rows show statistics for each player and the columns show the specific stat for the ...
4
votes
2answers
172 views
Understanding some MySQL Optimization tips
Hey, I was looking up some ways to make my MySQL queries more optimized, I bought some into practice but for some I wish to understand why they are recommended.
For example not using "LIMIT 10000,10" ...
4
votes
4answers
207 views
Better way to solve this grid-search problem?
I have a grid (not necessarily a square but I drew it as a square to simplify it) and certain values associated with each of the smaller squares. Given a circle of radius x, I am trying to find the ...
4
votes
3answers
987 views
LINQ- Max in where condition
I have a class TaskWeekUI with this definition:
public class TaskWeekUI {
public Guid TaskWeekId { get; set; }
public Guid TaskId { get; set; }
public Guid WeekId { get; set; }
...
4
votes
3answers
164 views
Max value in a many-to-many relationship
I'm using SQL Server 2008 and I have 3 tables, x, y and z. y exists to create a many-to-many relationship between x and z.
x y z
-- -- --
id xid id
zid sort
All of ...
4
votes
1answer
142 views
how to write a c++ template that gives the maximum of two args?
Both arguments are guaranteed to be integers.
How do I write myMax such that:
myMax<1, 2>; // 2
myMax<3, 2>; // 3 ?
I want this to be evaluated at compile time, not run time. (Need to ...
4
votes
4answers
7k views
sql server count of max values without subquery
I want to write a T-SQL query which returns not only the maximum value, but the number of rows having the maximum value. There must be a better way than what I have come up with
--wrong way
...
4
votes
4answers
850 views
Anti-aliasing: Preferred ways of determing maximum frequency?
I've been reading up a bit on anti-aliasing and it seems to make sense, but there is one thing I'm not too sure of. How exactly do you find the maximum frequency of a signal (in the context of ...
3
votes
1answer
59 views
Using MAX in a SELECT statement with logic
In a nutshell, I need to get the latest revision of a part. The criteria for determining the latest revision is;
If all the parts have an alpha revision, then the latest revision based upon the MAX ...
3
votes
6answers
65 views
MAX - 1 php ?? Does it exist?
I tried to get the 2nd highest value from an array and I simply want to know if it is possible to do something like MAX -1 OR I absolutely need to sort by table and the 2nd highest value
...