Oops sorry spoke too soon.
Are you able to use CTEs?
With CTE as (select COP1 from table2 where cop2 = 'abc' fetch first 1 rows
only)
select col1, col2 from table1 where col3 in (select cop1 from cte)
??? I don't know just a thought.
--
Michael Schutte
Admin Professional
Try Bob Evans GRILLING SAUSAGE! This summerâs hottest destination is your
own backyard with Bob Evans Brats and Italian Sausage! For tasty recipes
using Bob Evans grilling sausage, visit 
http://www.BobEvans.com/Recipes
                                                                           
             Michael_Schutte@b                                             
             obevans.com                                                   
             Sent by:                                                   To 
             java400-l-bounces         Java Programming on and around the  
             @midrange.com             iSeries / AS400                     
                                       <java400-l@xxxxxxxxxxxx>            
                                                                        cc 
             06/18/2009 12:14                                              
             PM                                                    Subject 
                                       Re: [OT] Fetch First 1 row only     
                                       does not work in subquery           
             Please respond to                                             
             Java Programming                                              
             on and around the                                             
              iSeries / AS400                                              
             <java400-l@midran                                             
                  ge.com>                                                  
                                                                           
                                                                           
select distinct cop1
--
Michael Schutte
Admin Professional
Try Bob Evans GRILLING SAUSAGE! This summerâs hottest destination is your
own backyard with Bob Evans Brats and Italian Sausage! For tasty recipes
using Bob Evans grilling sausage, visit 
http://www.BobEvans.com/Recipes
             Ashish Kulkarni
             <ashish.kulkarni1
             3@xxxxxxxxx>                                               To
             Sent by:                  "Java Programming on and around the
             java400-l-bounces         iSeries / AS400"
             @midrange.com             <java400-l@xxxxxxxxxxxx>
                                                                        cc
             06/18/2009 11:54                                      Subject
             AM                        [OT] Fetch First 1 row only does
                                       not work in subquery
             Please respond to
             Java Programming
             on and around the
              iSeries / AS400
             <java400-l@midran
                  ge.com>
Hi
I am trying a query like below
select col1, col2 from table1 where col3 = (select cop1 from table2 where
cop2='abc' fetch first 1 row only)
But it does not like fetch first 1 row only in subquery,
Table2 will return multiple rows for cop2='abc' condition, i want to select
first 1 row.
In table2, i have column cop3 which is numeric and will have numbers is
ascending order, can i use this column some way to get the first row only?
how can i do so
Any suggestions
--
This is the Java Programming on and around the iSeries / AS400 (JAVA400-L)
mailing list
To post a message email: JAVA400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: 
http://lists.midrange.com/mailman/listinfo/java400-l
or email: JAVA400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at 
http://archive.midrange.com/java400-l.
--
This is the Java Programming on and around the iSeries / AS400 (JAVA400-L)
mailing list
To post a message email: JAVA400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: 
http://lists.midrange.com/mailman/listinfo/java400-l
or email: JAVA400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at 
http://archive.midrange.com/java400-l.
As an Amazon Associate we earn from qualifying purchases.