Tagged Questions

1
vote
4answers
49 views

MAX on columns generated by SUM and GROUP BY

I'm trying to get the MAX on a column which is generated dynamically using the SUM statement. The SUM statement is used together with the 'GROUP by' syntax. This is the original q …
0
votes
1answer
9 views

Max font size for sIFR

I am trying to implement a large font for sIFR, but it seems to have a ceiling where you cant go any higher. I have adjusted the the variable MAX_FONT_SIZE within the sIFR.as to no …
0
votes
0answers
6 views

Using CreateCriteria and selecting row based on maxvalue

Hi, I want to select a row from one table in the database using CreateCriteria where I have a know value for a column, not primary key so there will be multiple rows matching. Th …
0
votes
2answers
46 views

What is max size of ajax response data?

I send request from asp.net page and then wait for response, calling GetCommand via SetInterval method: function GetCommand(id, sid) { getCommandResponse = $.ajax({ type: " …
1
vote
9answers
405 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 fu …
0
votes
1answer
40 views

How to get the greatest of two columns values in MySQL?

I'm trying to do something like this: SELECT MAX( ADDDATE(expirationdate, INTERVAL 1 YEAR), ADDDATE(now(), INTERVAL 1 YEAR) ) That is, get "a year from now", or "a year from …
2
votes
8answers
228 views

Fastest way to zero out low values in array?

So, lets say I have 100,000 float arrays with 100 elements each. I need the highest X number of values, BUT only if they are greater than Y. Any element not matching this should …
12
votes
4answers
2k views

Maximum length of a valid email id

What is the maximum length of a valid email id
0
votes
1answer
29 views

CSS Set maximum distance from browser edge.

I've got my site content inside an 800px-wide div, I'd like that div to be centered on the page until the browser window width extends past certain distance. At that point, I'd lik …
0
votes
1answer
52 views

Need Linq translation for the following SQL Query

select colId, colTaskType, MaxID from tblTaskType join ( select tblCheckList.colTaskTypeID, max(colItemNumber) MaxID from …
0
votes
3answers
99 views

Problem with MySql INSERT MAX()+1

I have a single table containing many users. In that table I have column called user_id (INT), which I want increment separately for each person. user_id MUST start at 1 I've prep …
4
votes
7answers
435 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 divide …
0
votes
4answers
664 views

Min/Max Width in IE6 without javascript?

Is it possible to get min/max width working in IE6 without the use of javascript? On a somewhat related note, does Google Chrome not understand, <!--[if IE 6]><!--> & …
1
vote
2answers
68 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 …
0
votes
3answers
249 views

Mysql Max query

I have two tables : teachers (teacher_id,teacher_name) courses (teacher_id,course_id) And I need to display names of the teachers, teaching maximum number of courses : mysql> …

1 2 3 4 5 next
15 30 50 per page