Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Please bear with me new to SQL- I am trying to write an SQL command with a join in a PROGRESS db. I would like to then select only the first matching record from the join. I thought to use LIMIT but PROGRESS does not support that. MIN or TOP would also work I think but having trouble with the syntax. Something like this?-

SELECT table1.field 1, table2.field 2
FROM table2
INNER JOIN table2
ON table1.field3=table2.field3
WHERE table1.field4 in (SELECT min(table1.field4) FROM table1)

BUt it appears I can't use MIN there as saying can't do an aggregate there. Any help would be huge.

share|improve this question
see latest edit – KM. Oct 6 '09 at 20:05

1 Answer

try:

SELECT
    t1.field1, t2.field2
    FROM table1            t1
        INNER JOIN table2  t2 ON t1.field3=t2.field3
    WHERE t1.field4=(SELECT min(t.field4) FROM table1 t WHERE t1.field4=t.field4)
share|improve this answer
I tried that but it appears to be querying for the MIN of the whole table and not of the join. – er Oct 6 '09 at 19:44
Thanks for your help. What do you mean by t as opposed to t1? – er Oct 6 '09 at 21:04
At the end I put in t1.field3=t2.field 3 and that works. Thanks! – er Oct 6 '09 at 21:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.