Postgres-sql-php - Mailing list pgsql-sql

From Zied Kharrat
Subject Postgres-sql-php
Date
Msg-id 2c2d671c0810230114n7cb8e63bqc5a657d90bb8b4d5@mail.gmail.com
Whole thread Raw
List pgsql-sql
<div dir="ltr">Hi Everybody..<br /><br />Let's present my problem:<br /><br />I have a table named <b>t1</b> and i will
insertdifferents values like this :<br /><br />insert into t1 (num,father,child,age) values ('1','joe','bruce','14',);
<br/> insert into t1 (num,father,child,age) values ('1','joe','lei','10',); <br />insert into t1 (num,father,child,age)
values('1','joe','mike','5',); <br /><br />when i use select * from t1 i obtain:<br /><br /><u>num  father  child    
age</u><br/>1       joe     bruce    14<br />1       joe     lei         10<br />1       joe     mike     5<br /><br
/><br/>i want to have <br /><br /><u>num  father  child     age</u><br />1       joe     bruce    14<br />            
      lei         10<br />                   mike     5<br /><br />what can i do as select request to obtain this
capture?<br/><br />Thanks :)<br /></div> 

pgsql-sql by date:

Previous
From: Oleg Bartunov
Date:
Subject: Re: Full Text Index Stats
Next
From: Aarni
Date:
Subject: Re: SELECT multiple MAX(id)s ?