|
database
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
big problem!would you mind helping me pls?I have 3 tables: Telbook(Id:int,Name:char,address:char,comment:ntext,owneruserid:int), PK:id TelNumbers(telbookid:int,telno:char,telNotype:int,syscode:int),PK:syscode,FK:telNumbers.telbookid=telbook.id Teltypes(teltypes:char,fk:int),FK:telnumbers.telnotype=teltypes.fk The question is here that I can create a query which results are: (id,Name,telno,telnotype,teltypes,address,comment) (4,nassa,091463738,2,Mobile,XXX,Null) (4,nassa,071163738,1,Tellphone,XXX,Nul) But,I want a query which shows the results in a way below: (id,Name,tellephone,mobile,Fax,e-mail,address,comment) (4,nassa,071163738,091463738,Null,Null,XXX,Null) Thanks, Nassa |
|||||||||||||||||||||||