Mailinglisten-Archive |
Kristian Köhntopp wrote: > Und dann muß die Subquery so aussehen: > > SQL> select * from doc where ( id, ver ) in ( select id, max(ver) from doc group > by id); So auch in Postgres. kk=> select * from doc; id|ver|daten --+---+------------ 1| 1|doc 1 ver 1 1| 2|doc 1 ver 2 2| 10|doc 2 ver 10 2| 15|doc 2 ver 15 (4 rows) kk=> select * from doc where ( id, ver ) in ( select id, max(ver) from doc group by id ); id|ver|daten --+---+------------ 1| 2|doc 1 ver 2 2| 15|doc 2 ver 15 (2 rows) Kristian -- Kristian Köhntopp, NetUSE Kommunikationstechnologie GmbH Siemenswall, D-24107 Kiel, Germany, +49 431 386 436 00 Using PHP3? See our web development library at http://phplib.shonline.de/ (GPL)
php::bar PHP Wiki - Listenarchive