Tagged Questions

0
votes
1answer
12 views

Mysql Foreach Child show Max() and Min() in a single line.

Is it possible to use a select statement so that it returns Max and min columns of a child row foreach Parent record? So foreach parent record that has MANY child records I want t …
0
votes
2answers
110 views

A select question

There are groups like this; USER_ID SEQ_ID NAME 1 2 Armut 1 3 Elma 1 4 Kiraz 2 1 Nar 2 2 Uzum 4 3 Sheftali 4 …
1
vote
9answers
428 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 …
2
votes
8answers
231 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 …
4
votes
7answers
440 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
671 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]><!--> & …
0
votes
0answers
27 views

NetCdf: how to obtain min and max for variable

NetCdf: For a grid you can obtain the minimum and maximum value for data in the following way: MAMath.MinMax dataMinMax = grid.getMinMaxSkipMissingData( data); float min = (float) …
0
votes
8answers
1k views

What’s the best way to select the minimum value from multiple columns?

Given the following table in SQL Server 2005: ID Col1 Col2 Col3 -- ---- ---- ---- 1 3 34 76 2 32 976 24 3 7 235 3 4 245 …
8
votes
4answers
7k views

MySQL: Select N rows, but with only unique values in one column

Given this data set: ID Name City Birthyear 1 Egon Spengler New York 1957 2 Mac Taylor New York 1955 3 Sarah Connor Los Angele …
1
vote
2answers
3k views

Using Min, Max and Count on HQL

Hello there. Does hibernate HQL queries support using select min, max, count and other sql functions? like select min(p.age) from person p Thanks
1
vote
3answers
420 views

Change min/max/close buttons theme

Hi, im currently overiding the WM_NCPAINT, WM_NCCALCSIZE and WM_NCACTIVATE to paint my own color/themed title bar for an application im working on. Now this is working great howeve …