Re: [SQL] Q: select query

2003-09-13 Thread Manfred Koizar
On 12 Sep 2003 10:58:45 -0700, [EMAIL PROTECTED] (G. Ralph Kuntz, MD) wrote: >I would like to select the second and subsequent rows where the first >column is the same: > > 1 b > 1 c > 3 f > >in other words, all but the first row of a group. all = SELECT * FROM t; but =

Re: [SQL] Q: select query

2003-09-13 Thread Rod Taylor
> in other words, all but the first row of a group. Interesting question. The below should work and be quick so long as there is a UNIQUE(col1, col2) constraint. SELECT col1 , col2 FROM j WHERE col2 != (SELECT col2 FROM j AS jsub WHERE col1 = j.col1

[SQL] Q: select query

2003-09-13 Thread G. Ralph Kuntz, MD
I am trying to write a query to select some rows. My data consists of rows like this 1 a 1 b 1 c 2 d 3 e 3 f ... I would like to select the second and subsequent rows where the first column is the same: 1 b 1 c 3