Gridview和Select查询

时间:2013-05-16 04:06:18

标签: c#

我正在使用gridview和表,我正在使用c#和asp.net。假设我有2个表,我们只需将其命名为Profiles和Info。

在表格配置文件中,假设我有p_Id,FirstName,LastName的字段,在事务中我有I_Id,childsID,fathersID,mothersID。

这就是我的表格:

资料

| p_Id | FirstName | LastName |

| 1    | Jack      | Cole     | 
| 2    | Cynthia   | Cole     | 
| 3    | Robert    | Cole     |  

信息

| I_Id | childsID | fathersID | mothersID |

| 1    | 1        | 3         | 2         |

现在在我的gridview中,我必须显示FirstName,LastName,Father和Mother。但是我需要显示他们的名字而不是他们的ID。

现在我的gridview看起来像这样:

First Name | Last Name | Father| Mother |

Jack       | Cole      | 3     | 2      |

我想要的是这样的:

First Name | Last Name | Father      | Mother       |

Jack       | Cole      | Robert Cole | Cynthia Cole |

1 个答案:

答案 0 :(得分:1)

试试这个

select p.firstName, p.LastName
   , (select sp.FirstName+' '+sp.Lastname FROM profile sp WHERE sp.p_id=i.fathersid) as father
   , (select sp.FirstName+' '+sp.Lastname FROM profile sp WHERE sp.p_id=i.mothersid) as mother
from info i
inner join profile p ON (p.p_id=i.childsID)