Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.tools -> Using MAX( ) function in SQL.

Using MAX( ) function in SQL.

From: Jack Torrence <poo_at_127.0.0.1>
Date: Sun, 26 Nov 2000 14:15:52 -0000
Message-ID: <MPG.148b2b70162f279298968d@news.ntlworld.com>

Hi

I am having trouble with a question I have been set for uni.

my table is as follows;

part(partno, description, colour, cost);

I need to use the MAX function, to select the row with the maximum cost, and the other 3 fields.

SELECT MAX(cost), colour, partno
FROM part;

Why can`t I do this? what is wrong with the syntax, or am I missing something maybe.

I have also tried

SELECT MAX(cost), MAX(colour), MAX(partno)

but that only selects the max of each individual field.

Can anyone help? Received on Sun Nov 26 2000 - 08:15:52 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US