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

Home -> Community -> Usenet -> c.d.o.misc -> Re:Urgent Help with a Select

Re:Urgent Help with a Select

From: <y0h8797_at_acs.tamu.edu>
Date: 1997/07/23
Message-ID: <5r4v29$h1h@news.tamu.edu>#1/1

Here's the script you need write.

select capacity, available
from tabel_a
where available in (
select min(available)
from table_a
where route=11
group by route);

Yong (y0h8797Acs.tamu.edu) Received on Wed Jul 23 1997 - 00:00:00 CDT

Original text of this message

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