I am trying to build a PageBlockTable inside another PageBlockTable, so I can add the master data in the master table and each row will has a detailed table.

So I am thinking of this
<apex:pageBlockTable value="{!List<Objict>}" var="obj"> <apex:column > <apex:facet name="header"> <apex:commandLink value="Code"/> </apex:facet> <apex:outputField value="{!obj.Name}"/> </apex:column> <!-- and repeat <apex:column> for 6 times. Then I want to add the table --> </apex:pageBlockTable> So how could I do this ?