Maximum value. Largest, biggest, greatest.

learn more… | top users | synonyms

1
vote
1answer
21 views

selecting max value excel using Cells(x,y) as input

How do you call the Max function in VBA using a range of Cells (x,y) as input? E.g., I have two variables, m & n, where n > m I try to find the Max value within a range of cells using the ...
0
votes
3answers
23 views

invalid use of group function error for extracting date with max and min

I'm trying to execute a query like this: SELECT MAX(counter), MIN(counter) , my_date IN (SELECT my_date FROM my_table WHERE counter = MAX(counter) ) AS max_Date , my_date IN (SELECT ...
0
votes
2answers
45 views

Find the highest number in a column

I am trying to find the highest number in a column out of several results, I am trying to use the following code but it isn't working as expected. If I have records numbered 1 to 7 I want to pick 7 as ...
0
votes
3answers
55 views

Recursive Maximum for a Linked List in Java

To learn recursion and also to write a custom linkedlist (not the LinkedList in java.util), I tried to create a recursive max() method as follows. I had to struggle a bit, but finally I got it ...
0
votes
1answer
13 views

max in query using my php admin doesn't give right value just the first one

This code for finding the max salary of an employee,the data stored in database in phpmyadmin using java in netbeans: case 5:{//start of max salary 5 RS = st.executeQuery("select * from ...
0
votes
0answers
19 views

SQL Multi Column Max for one result on a Join (Efficiency Request)

I am trying to connect all products in stock with the latest receipt information for each item. The issue is that I can have the exact same Date/Time on Multiple Receipts so I need the max DocNum as ...
-4
votes
1answer
41 views

Finding the maximum value of each row and reshaping the matrix

Say we have the following matrix: 2 5 5 3 6 3 6 4 What I'm trying to do is: 1- Find the maximum value of each row For this part, I think we can do the following? [r,c] = size(u); for i=1:c for ...
0
votes
0answers
28 views

Multi Join + Groub By, get 1 row per album with max rating

im trying to make a chart list and i use the following query SELECT vmm_user.username, vmm_songs.*, vmm_albums.desc, vmm_albums.release, vmm_albums.name, ...
0
votes
1answer
22 views

find all indices of max values matlab

I just want to find all the indices of the maximum value in a vector in matlab. the max function returns only the index of the first occurence of the maximum. For example: maxChaqueCell = [4 5 ...
1
vote
1answer
37 views

MySQL - next / previous ID wih cycling

I need to create previous / next functionality with cycling. My current solution, If I select MAX(ID) gives next as NULL. How can I most efficiently get MIN(ID) instead of NULL(and vice versa for ...
1
vote
2answers
29 views

SQL MAX with GROUP BY getting wrong non-grouped field

I'm trying to get the maximum total of rows from a table grouped by spot_id and vote_type but the other field I need (video_id) is not in the group, so I guess that's why it's giving the wrong ...
1
vote
1answer
16 views

Fetching Maximum Id into variable using Max() function not working in MySQL store procedure

Declare: Maxid varchar(11) default null; Select ifnull(max(employeeID),0) into @Maxid from employees where mid(employeeID,1,2) = '04'; I want to fetch the maximum Id of EmployeeID from employees ...
0
votes
1answer
10 views

Get highest value considered of other attribute

I have a requirement for selecting the newest record of each person. Values in table: Date | Person 10.06.2013 | James 12.06.2013 | James 17.06.2013 | David 17.06.2013 | Emily Desired result: ...
-1
votes
2answers
51 views

finding max value in an array using recursion java [closed]

I'm looking for a recursive method to find the maximum value in an array (I know already the iterative one) for the base case, I've came up with the idea that: if(t.length == 1) return t[0]; but ...
0
votes
1answer
13 views

Get only the maximum value row in MDX

I'm new in MDX. I need to get the the row with MAX(Depth) in the following (Depth is a measure); Username, Role, Category, Location and Form is dimensions. Name of the Fact table is AccessControl ...
0
votes
1answer
47 views

PHP Array : “group by” then count maximum

I already asked this question for MySQL , but I want to do the same thing with a PHP array now. |--------|------------|--------| | Name | Date | Points | |--------|------------|--------| | ...
1
vote
2answers
55 views

Python-How to determine largest/smallest int/long/float/complex numbers my system can handle [duplicate]

Specs: Python 3.3.1 What I was trying to do: "Using Python, determine the largest and smallest ints, longs, floats, and complex numbers that your system can handle." What I did: I went through ...
-1
votes
2answers
53 views

Mysql: Select max count from different id

I have two table student and exam look like student(studentid,lastname,firstname,class) exam(studentid,course,mark,result) I need find the best students have mark with 90, 100 in each class. this ...
0
votes
1answer
11 views

Java:treeset sort in ascending order

guys!i want to sort strings in ascending order,so i use treeset to avoid repeading items,and a comparator interface to ascend. here is my comparator code: public class sortOnHistoryFiles implements ...
0
votes
0answers
15 views

jquery progressbar | set “max” from HTML

i was trying to set the "max" for a jQuery Progressbar from my HTML <div class="progressBar" data-value="200" data-max="400"></div> the script looks like this $(function () { ...
0
votes
1answer
53 views

Reading integers from Txt and summarize it

You are to write a program to compute statistics on a list of exam scores, the Exam Statistics Program (ESP). The input is the name of a text file that contains the number of scores followed by the ...
0
votes
1answer
41 views

How to make this query with ORM::factory

I dont know how to use this "MAX" with ORM. Use Kohana 3.2. SELECT MAX( version_id ) AS latest FROM pages_versions WHERE page_id = 3
0
votes
1answer
26 views

MYSQL SELECT MAXIMUM RECORD BY USERS ONLY IF USER AS THE HIGEST VALUE FOR THIS ID

I have 1 table that I need to have a query made on it. I am looking to retreive the sum of all the higest value I have place on each veh_id only if I have the highest value for that veh_id. Here is ...
0
votes
0answers
20 views

efficient calculation based on another calculation

I have two readonly properties which are calculated in a class from three other public properties in the class: Public ReadOnly Property Max() As Double Public ReadOnly Property Min() As Double ...
0
votes
3answers
76 views

Excel CSV. file with more than 1,048,576 rows of data

I have been given a CSV file with more than the MAX Excel can handle, and i really need to be able to see all the data. I understand and have tried the method of "Splitting" it but it doesnt work. ...
1
vote
7answers
73 views

How can I get the minimum and the maximum element of a list in python

If a have a list like: l = [1,2,3,4,5] and I want to have at the end min = 1 max = 5 WITHOUT min(l) and max(l).
0
votes
4answers
50 views

select max value from a table looking for description in another table

i have 3 tables Buyer buyer_id | name 50 |Joe 60 |Astor 70 |Cloe Item item_id | description 1 | iphone 2 | ipod 3 | imac Item_Sold buyer_id | item_id 50 ...
1
vote
1answer
48 views

How to use std::max_element on a two dimensional vector

I've looked around for the solution to this problem and was unable to turn up anything. I am sure it is a quick fix, hopefully someone can spot my error and show me. Here is what I've got ...
0
votes
5answers
35 views

Get file with max datetime in name from directory

I have zip files in directory. How can I get file with max datetime in file name? My files format: Files_2013.06.04_15-42-55.zip Files_2013.06.03_15-42-55.zip ...
0
votes
1answer
14 views

Geting only the max value

The folowing code : SELECT DISTINCT Id1, A1.Id2 FROM Table A1 WHERE 1 <= (SELECT COUNT (*) FROM Table A2 WHERE A1.Id2 = A2.Id2) outputs : ...
0
votes
1answer
25 views

Using charindex, max, substring/right function at once

once of the column I am working with contains directory path for the file imported. However, I do not want the whole directory path. I just want the file name. What I am doing: I am trying to ...
2
votes
2answers
22 views

Get relative data with max in mysql

I have a table called log_payment that has a series of payment records like: log_user_id, log_date, log_payment_id 13, 2013-01-01 01:13:00, TRIAL<BR> 13, 2013-01-02 01:18:00, 1<BR> 13, ...
1
vote
3answers
67 views

Generating random numbers 1-100

I need to generate random numbers from 1 to 100 and I know how to do that part... I need to ask user how many numbers he wants to generate(if he says 5 the program needs to generate 5 numbers from ...
0
votes
0answers
22 views

Algorithm for finding Min Max of Inventory

I've been looking over the web on and off for the past couple of weeks regarding Inventory Control Systems. I understand that Min Max Inventory Systems have fallen out of favour as of late, but ...
0
votes
0answers
19 views

set a process open file max to maximum (in linux)

Is there anyway to set the (hard limit) open-file-max (setrlimit, RLIMIT_NOFILE) to the maximum? suppose that the pid of the process is zero (root). I just want to increase the RLIMIT_NOFILE to the ...
2
votes
1answer
51 views

SQL Server : Select max with Sub-select

I am try to get a max value of a result set of another select in SQL Server, but not able to. I am not sure what I am doing incorrect in SQL Server. Any help would be great. This is my SQL: select ...
0
votes
1answer
51 views

Repeating an attribute value in sql

I have a simple query that I would like some specific results but not sure of the right way to go about it. I'm using a SQL Server database and my query is as follows: SELECT dt.year , ...
0
votes
1answer
27 views

showing highest sum as result

Maybe there's someone who can help me. I've got 5 tables from which I would have the sum per table and show the highest sum. I've tried this, but I got an error. $best_browser_query = ...
1
vote
3answers
40 views

Mysql select max maximum sum values

I have a database which contains some picture data and a linking table. The tables are build-up like this: ---pictures--- picid Lat Lon 1 5 6 2 7 31 3 31 43 4 ...
0
votes
1answer
25 views

MAX/MIN giving me wrong values in mysql

I am trying to get the MAX() or the MIN() value of a dataset. Sample data: equipment_id, value, updateTimestamp 77, 81.57, 2013-05-28 12:00:00 77, 89.56, 2013-05-28 13:00:00 77, 92.76, 2013-05-28 ...
2
votes
3answers
49 views

How to find Profit between 3 different tables

My project is about a jewelery store and i try to find the produxt with the max Profit. I have 3 tables which gives me the info: SALES(salesid,productid,quantity,price) salesid productid ...
0
votes
2answers
25 views

INSERT SELECT MAX connected with text

I want to insert to type field max id from other table but I need to connect it with text information as "Created new user with id = "MAX(my_employee.id). Code that work but insert only id: INSERT ...
0
votes
3answers
26 views

SELECT statement testing max values

I'm trying to get the ID where the Upper value is less than/equal to a given value. myTable (`ID`, `Lower`, `Upper`) (1, 1, 9), (2, 10, 49), (3, 50, 99), (4, 100, 499), (5, 500, 999), (6, 1000, ...
1
vote
2answers
38 views

Mixed scenarios in MS Access

This is my table [Property]: Loanno Balance amount PropertyType 1001045 308731.770000 1 1001045 2007700.740000 2 1001045 3087318905.770 3 1001045 308731.770000 4 1001046 306589.67 ...
1
vote
4answers
120 views

Find both min and max together: algorithm should be faster but isn't

I'm trying to implement an algorithm to find the minimum and the maximum values among a set of longs in a file. My test file contains one billion longs. The algorithm works as expected but does not ...
2
votes
1answer
23 views

Get name of variable corresponding to maximum value in a list

I have this code: timeLS1 = 0.1 timeLS2 = 0.2 timeLS3 = 0.15 timeLS4 = 0.5 timeLS5 = 0.4 timeLS6 = 0.3 timeLSv = (timeLS1, timeLS2, timeLS3, timeLS4, timeLS5, timeLS6) timeLS = max(timeLSv) print ...
0
votes
1answer
50 views

MySQL - select - max - group by - efficiency

I have a question regarding performance of the MySQL DBMS. Perhaps a trivial matter. There are two tables and I need to get result as below : PLAYERS VISITS ID | ...
1
vote
4answers
83 views

select two columns based on the maximum value of the other column in SQL

Hi this is the table Im using say Loandetails Loanno Balance amount DueDATE 1001045 308731.770000 12/31/99 1001045 2007700.740000 12/31/99 1001045 3087318905.770000 11/01/99 1001045 ...
2
votes
2answers
68 views

PDO returning a single row while MySQL returns multiple rows

I have the following table in my database: id | reference | secondID --------------------------------------------- 1 | 11 | 1 2 | 12 ...
3
votes
1answer
73 views

Getting top 50 highest numbers from an unsorted array efficiently

Assuming we have a large data set in an array (say 50000) and we now want to get the top 50 highest numbers in the array, Would you suggest using a priority queue and pop 50 times? inserting each of ...

1 2 3 4 5 25