Re: [NOVICE] [SQL] Select last there dates

2007-06-21 Thread Loredana Curugiu
Thank you for documentation. Best regards, Loredana

Re: [SQL] Select last there dates

2007-06-21 Thread Loredana Curugiu
I think there might be a small typo though. The left-join is to: (select uid, phone_numer, datum from t2 order by 2 ) Probably want to order by "datum DESC" too, to ensure you get the latest dates for each telnum. yes, I also observed this, so I have add to my query. Thank you for your ex

Re: [SQL] Select last there dates

2007-06-21 Thread A. Kretschmer
am Thu, dem 21.06.2007, um 16:00:05 +0300 mailte Loredana Curugiu folgendes: > So Andreas, would you please give some more explanations > on your solution? I didn't work with functions and aggregate till > now. I will try it, but i'm not a nativ english speaker and thats why i have some problems.

Re: [SQL] Select last there dates

2007-06-21 Thread Richard Huxton
Loredana Curugiu wrote: Richard, Andreas, thank you very much for your solutions. I took a look on both solutions, but I choosed Andreas's solution because is shorter :) Not to mention clever, exploiting the fact that we know the length of a text-representation of three comma-separated dates.

Re: [SQL] Select last there dates

2007-06-21 Thread Loredana Curugiu
Richard, Andreas, thank you very much for your solutions. I took a look on both solutions, but I choosed Andreas's solution because is shorter :) So Andreas, would you please give some more explanations on your solution? I didn't work with functions and aggregate till now. I don't understand ho

Re: [SQL] Select last there dates

2007-06-21 Thread A. Kretschmer
am Thu, dem 21.06.2007, um 11:18:13 +0300 mailte Loredana Curugiu folgendes: > Hello again, > > I have the following two tables: > > Table 1: > uid | phone_number | > -+--- >8 | +40741775621 | >8 | +40741775622 | >8 | +40741775623 | >9 | +407417756

Re: [SQL] Select last there dates

2007-06-21 Thread Richard Huxton
Loredana Curugiu wrote: My task is to create a query which for a given uid returns all values for phone_number column from table1 and last three values of date column from table2. For example, if uid=8 the query should return: phone_number |date ---+ +4074177

[SQL] Select last there dates

2007-06-21 Thread Loredana Curugiu
Hello again, I have the following two tables: Table 1: uid | phone_number | -+--- 8 | +40741775621 | 8 | +40741775622 | 8 | +40741775623 | 9 | +40741775621 | 9 | +40741775622 | 9 | +40741775623 | 10 | +40741775621 | 10 | +40741775622 | 10 | +4074177562