Question : Create row based view from  several tables.

Hi There,

I have 3 tables with different column names and different number of columns. (The first table has seven columns,the second has six columns and the last table has 10 columns.

I have attached some example data in the code snippet section below

I would like to be able to create an sql view from the three tables with the rows containing data from different columns for ID 10023 only as follows:
3 Cols from First table (InsuranceTypeName,InsuranceProvider,PolicyNumber)
3 Cols from Second Table (LicenseName,IssuingAuthority,IssueDate)
3 Cols from Third Table (EmployeeName, SubContrator,Occupation,

Create view vw_myTable view as Select  ------------as Col_01, -----Col_02 ---- Col_03
where ContractorID = '10023'

The desired result should look like this

      Col 01      Col 02      Col 03
Rows from Table 1
r1
r2
r3
Rows from Table 2
r4
r5
r6
r7
r8
Rows from Table 3
r9
r10
r11
r12


Any Ideas ?
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
ContactorID InsuranceTypeName                                                                                    InsuranceProvider                                                                                    PolicyNumber                                                                AmountInsured                           DateInsured             DateExpiry
----------- ---------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------- --------------------------------------- ----------------------- -----------------------
10001       Professional Indemnity                                                                               CGU                                                                                                  02MIS0743794                                                                2000000.00                              2008-12-07 00:00:00.000 2009-12-07 00:00:00.000
10001       Buildings & Contents                                                                                 QBE                                                                                                  130A010309BPK                                                               20000.00                                2009-05-10 00:00:00.000 2010-05-10 00:00:00.000
10001       Public Liability Insurance                                                                           QBE                                                                                                  130A010309BPK                                                               10000000.00                             2009-05-10 00:00:00.000 2010-05-10 00:00:00.000
10001       Workers Compensation                                                                                 QBE                                                                                                  1SF0046182GWC154                                                            184620.00                               2009-10-30 00:00:00.000 2010-10-30 00:00:00.000
10021       Workers Compensation                                                                                 QBE                                                                                                  1GF0035723GWC154                                                            340000.00                               2009-07-16 00:00:00.000 2010-07-16 00:00:00.000
10021       Public Liability Insurance                                                                           QBE                                                                                                  130 A475248 BPK                                                             20000000.00                             2009-07-31 00:00:00.000 2010-07-31 00:00:00.000
10022       Personal Accident and Illness                                                                        Lumley General Insurance Limited                                                                     AHPL00021660                                                                400.00                                  2009-11-15 00:00:00.000 2010-11-15 00:00:00.000
10022       Heavy Motor Vehicle                                                                                  QBE Insurance (Australia) Limited                                                                    18H000991 MVA                                                               130000.00                               2009-03-31 00:00:00.000 2010-03-31 00:00:00.000
10022       Public Liability Insurance                                                                           QBE Insurance (Australia) Limited                                                                    18 A234375 PLB                                                              10000000.00                             2009-03-31 00:00:00.000 2010-03-31 00:00:00.000
10022       Workers Compensation                                                                                 Employers Mutual                                                                                     86444016                                                                    8000.00                                 2009-04-27 00:00:00.000 2010-04-27 00:00:00.000
10023       Workers Compensation                                                                                 Allianz Australia                                                                                    MWN5006858                                                                  650000.00                               2009-06-30 00:00:00.000 2010-06-30 00:00:00.000
10023       Public Liability Insurance                                                                           Lumley/Wesfarmers General                                                                            SYEN-0146-9487                                                              20000000.00                             2009-09-15 00:00:00.000 2010-09-15 00:00:00.000
10023       Heavy Motor Vehicle                                                                                  Lumley/Wesfarmers General                                                                            SYEN-0146-9487                                                              20000000.00                             2009-09-15 00:00:00.000 2010-09-15 00:00:00.000

(13 row(s) affected)

ContactorID LicenseName                                                                                          IssuingAuthority                                                                                     IssueDate               ExpiryDate              NeverExpires
----------- ---------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------- ----------------------- ----------------------- ------------
10001       Registered Training Organisation                                                                     Vetab - NSW                                                                                          2006-05-31 00:00:00.000 2011-05-31 00:00:00.000 0
10021       MASTER LICENCE                                                                                       NSW SECURITY REGISTRY                                                                                2007-09-21 00:00:00.000 2012-09-21 00:00:00.000 0
10023       Bonded Asbestos Removal (Construction                                                                Miller College /Workcover                                                                            2009-10-10 00:00:00.000 2011-10-10 00:00:00.000 0
10023       Contractors Licence                                                                                  Dept Fair Trading                                                                                    2007-10-28 00:00:00.000 2010-10-28 00:00:00.000 0
10029       Pest Control license                                                                                 Work Cover                                                                                           2007-06-28 00:00:00.000 2011-06-27 00:00:00.000 0
10029       Quality Assurance                                                                                    SAI Global                                                                                           2005-03-04 00:00:00.000 2011-03-03 00:00:00.000 0
10029       Business registration                                                                                Fair Trading                                                                                         2008-05-23 00:00:00.000 2011-05-22 00:00:00.000 0
10029       Pest Control license                                                                                 Workcover                                                                                            1993-12-02 00:00:00.000 2013-02-10 00:00:00.000 0
10001       Certificate of Registration of Company                                                               ASIC                                                                                                 NULL                    NULL                    1
10023       Certificate of Registration of a Company                                                             ASIC                                                                                                 2003-07-04 00:00:00.000 NULL                    1
10028       Vehicle Registration - AR 39 HQ                                                                      RTA Toronto Motor Registry                                                                           2009-09-11 00:00:00.000 2010-10-04 00:00:00.000 0
10028       Vehicle Registration                                                                                 RTA                                                                                                  2009-01-20 00:00:00.000 2010-09-20 00:00:00.000 0
10028       Vehicle Registration                                                                                 RTA                                                                                                  NULL                    2010-04-28 00:00:00.000 0
10022       BNG Conserve - Certificate of Accreditation                                                          BNG Contractor Services Pty Ltd                                                                      2009-04-29 00:00:00.000 2010-04-28 00:00:00.000 0
10022       Certificate of Registration of Business Name                                                         Department of Fair Trading - NSW                                                                     2007-04-17 00:00:00.000 2010-10-17 00:00:00.000 0
10029       BNG Conserve - Certificate of Accreditation                                                          BNG Contractor Services Pty Ltd                                                                      2009-05-07 00:00:00.000 2010-05-06 00:00:00.000 0
10023       BNG Conserve - Certificate of Accreditation                                                          BNG Contractor Services Pty Ltd                                                                      2009-04-29 00:00:00.000 2010-04-28 00:00:00.000 0
10021       ASH PAL                                                                                              S.I.R NSW POLICE                                                                                     2009-01-18 00:00:00.000 2010-01-18 00:00:00.000 0
10021       Conserve Accreditation Certificate                                                                   BNG Contractor Services                                                                              2009-04-29 00:00:00.000 2010-04-28 00:00:00.000 0
10028       AW-10-VF Registration                                                                                RTA                                                                                                  2009-08-21 00:00:00.000 2010-08-21 00:00:00.000 0

(20 row(s) affected)

ContactorID EmployeeID  EmployeeName                                                                                                                                            SubContrator                                                                                         Occupation                                                                                           CertificationName                                                                                    IssuingAuthority                                                                                     ValidFrom               ValidTo                 NeverEpxires
----------- ----------- ------------------------------------------------------------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------- ----------------------- ----------------------- ------------
10023       1060        Patrick Tallarida                                                                                                                                       NULL                                                                                                 Overall General Hand                                                                                 Traffic Controller                                                                                   Roads & Traffic Authority                                                                            NULL                    2011-03-20 00:00:00.000 0
10023       1068        Tony Carbone                                                                                                                                            NULL                                                                                                 Contractor                                                                                           108183C                                                                                              Fair Trading                                                                                         NULL                    NULL                    0
10023       1097        Stevan Ostojic                                                                                                                                          Sturdy Bricklaying                                                                                   Contractor                                                                                           Bricklayer                                                                                           Dept of Fair Trading                                                                                 2008-06-30 00:00:00.000 2010-07-08 00:00:00.000 0
10023       1097        Stevan Ostojic                                                                                                                                          Sturdy Bricklaying                                                                                   Contractor                                                                                           Construction Industry OHS Induction Certificate                                                      Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       1054        Craig Edwards                                                                                                                                           NULL                                                                                                 Fencing Specialist                                                                                   Construction Industry OHS Induction Certificate                                                      Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       1096        Mathew Poulter                                                                                                                                          Reds Haulage Pty Ltd                                                                                 Contractor                                                                                           Construction Industry OHS Induction Certificate                                                      Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       1096        Mathew Poulter                                                                                                                                          Reds Haulage Pty Ltd                                                                                 Contractor                                                                                           Heavy Vehicle Driver License                                                                         Roads & Traffic Authority                                                                            NULL                    NULL                    0
10023       1091        Batti Bros Concrete Pumping Batti                                                                                                                       NULL                                                                                                 Contractor                                                                                           Construction Induction OHS Induction Certificate                                                     Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       1091        Batti Bros Concrete Pumping Batti                                                                                                                       NULL                                                                                                 Contractor                                                                                           Heavy Vehicle Driver Licence                                                                         Roads & Traffic Authority                                                                            NULL                    2011-01-12 00:00:00.000 0
10023       1094        Gino & M A Vella Vella                                                                                                                                  NULL                                                                                                 Contractor                                                                                           Construction Industry OHS Induction Certificate                                                      Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       1094        Gino & M A Vella Vella                                                                                                                                  NULL                                                                                                 Contractor                                                                                           Heavy Vehicle Driver Licence                                                                         Roads & Traffic Authority                                                                            NULL                    2010-09-10 00:00:00.000 0
10023       1095        Ronnie Deguara                                                                                                                                          R & K Deguara Pty Ltd                                                                                Contractor                                                                                           Construction Industry OHS Induction Certificate                                                      Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       1095        Ronnie Deguara                                                                                                                                          R & K Deguara Pty Ltd                                                                                Contractor                                                                                           Heavy Vehicle Driver Licence                                                                         Roads & Traffic Authority                                                                            NULL                    2010-11-26 00:00:00.000 0
10023       1050        Joseph Carbone                                                                                                                                          NULL                                                                                                 Manager                                                                                              Heavy Vehicle Driver Licence                                                                         Roads & Traffic Authority                                                                            NULL                    2010-08-20 00:00:00.000 0
10023       1058        John Lopresti                                                                                                                                           NULL                                                                                                 Concretor / Truck Driver                                                                             Heavy Vehicle Driver Licence                                                                         Roads & Traffic Authority                                                                            NULL                    2011-05-27 00:00:00.000 0
10023       1054        Craig Edwards                                                                                                                                           NULL                                                                                                 Fencing Specialist                                                                                   Forklift                                                                                             Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       1056        Som Lam                                                                                                                                                 NULL                                                                                                 Welder                                                                                               Bonded Asbestos Sheet Removal                                                                        TAFE                                                                                                 NULL                    2099-12-31 00:00:00.000 1
10023       1056        Som Lam                                                                                                                                                 NULL                                                                                                 Welder                                                                                               Forklift                                                                                             Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       1056        Som Lam                                                                                                                                                 NULL                                                                                                 Welder                                                                                               Heavy Vehicle Driver Licence                                                                         Roads & Traffic Authority                                                                            NULL                    2010-12-07 00:00:00.000 0
10023       1056        Som Lam                                                                                                                                                 NULL                                                                                                 Welder                                                                                               Construction Industry OHS Induction Certificate                                                      Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       1051        Michael Camilleri                                                                                                                                       NULL                                                                                                 Plant Operator Truck Driver                                                                          Construction Industry OHS Induction Certifcate                                                       Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       1051        Michael Camilleri                                                                                                                                       NULL                                                                                                 Plant Operator Truck Driver                                                                          Heavy Vehicle Driver Licence                                                                         Roads & Traffic Authority                                                                            NULL                    2011-03-09 00:00:00.000 0
10023       1051        Michael Camilleri                                                                                                                                       NULL                                                                                                 Plant Operator Truck Driver                                                                          Bonded Asbestos Sheet Removal                                                                        TAFE                                                                                                 NULL                    2099-12-31 00:00:00.000 1
10023       1051        Michael Camilleri                                                                                                                                       NULL                                                                                                 Plant Operator Truck Driver                                                                          Bobcat/Excavator                                                                                     Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       1054        Craig Edwards                                                                                                                                           NULL                                                                                                 Fencing Specialist                                                                                   Bonded Asbestos Sheet Removal                                                                        TAFE                                                                                                 NULL                    2099-12-31 00:00:00.000 1
10023       1057        Mathew Langford                                                                                                                                                                                                                                              Overall General Hand                                                                                 Bonded Asbestos Sheet Removal                                                                        TAFE                                                                                                 NULL                    2099-12-31 00:00:00.000 1
10023       1060        Patrick Tallarida                                                                                                                                       NULL                                                                                                 Overall General Hand                                                                                 Bonded Asbestos Sheet Removal                                                                        TAFE                                                                                                 NULL                    2099-12-31 00:00:00.000 1
10023       1058        John Lopresti                                                                                                                                           NULL                                                                                                 Concretor / Truck Driver                                                                             Construction Industry OHS Induction Certificate                                                      Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       1058        John Lopresti                                                                                                                                           NULL                                                                                                 Concretor / Truck Driver                                                                             General Concretor                                                                                    Dept of Fair Trading                                                                                 2009-09-04 00:00:00.000 2010-09-04 00:00:00.000 0
10023       1058        John Lopresti                                                                                                                                           NULL                                                                                                 Concretor / Truck Driver                                                                             Bonded Asbestos Sheet Removal                                                                        TAFE                                                                                                 NULL                    2099-12-31 00:00:00.000 1
10023       1052        Adrian Brown                                                                                                                                            NULL                                                                                                 Overall General Hand                                                                                 Construction Industry OHS Induction Certifcate                                                       Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       1052        Adrian Brown                                                                                                                                            NULL                                                                                                 Overall General Hand                                                                                 Bonded Asbestos Sheet Removal                                                                        TAFE                                                                                                 NULL                    2099-12-31 00:00:00.000 1
10023       1050        Joseph Carbone                                                                                                                                          NULL                                                                                                 Manager                                                                                              Construction Industry OHS Induction Certifcate                                                       Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       1057        Mathew Langford                                                                                                                                                                                                                                              Overall General Hand                                                                                 Construction Industry OHS Induction Certifcate                                                       Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       1057        Mathew Langford                                                                                                                                                                                                                                              Overall General Hand                                                                                 Traffic Controller                                                                                   Roads & Traffic Authority                                                                            NULL                    2011-03-20 00:00:00.000 0
10023       1059        Stephen Penza                                                                                                                                           NULL                                                                                                 Concretor                                                                                            Construction Industry OHS Induction Certificate                                                      Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       1060        Patrick Tallarida                                                                                                                                       NULL                                                                                                 Overall General Hand                                                                                 Construction Industry OHS Induction Certifcate                                                       Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       1058        John Lopresti                                                                                                                                           NULL                                                                                                 Concretor / Truck Driver                                                                             Traffic Controller                                                                                   Roads & Traffic Authority                                                                            NULL                    2011-06-03 00:00:00.000 0
10023       1050        Joseph Carbone                                                                                                                                          NULL                                                                                                 Manager                                                                                              Contractor Licence                                                                                   Dept of Fair Trading                                                                                 NULL                    2010-10-28 00:00:00.000 0
10023       1050        Joseph Carbone                                                                                                                                          NULL                                                                                                 Manager                                                                                              Bonded Asbestos Sheet Removal                                                                        TAFE                                                                                                 NULL                    2099-12-31 00:00:00.000 1
10023       1066        John Potter                                                                                                                                             Any Areas Asphalt Pty Ltd                                                                            Contractor/ Ashpalt                                                                                  Commercial MV & Public Liability Insurance                                                           Allianz Aust Insurance Ltd                                                                           2009-01-29 00:00:00.000 2009-09-02 00:00:00.000 0
10023       1094        Gino & M A Vella Vella                                                                                                                                  NULL                                                                                                 Contractor                                                                                           Public Liability                                                                                     Jardine LLoyd Thompson                                                                               2008-11-30 00:00:00.000 2009-11-30 00:00:00.000 0
10023       1094        Gino & M A Vella Vella                                                                                                                                  NULL                                                                                                 Contractor                                                                                           Motor Vehicle Insurance                                                                              Jardine LLoyd Thompson                                                                               2008-11-30 00:00:00.000 2009-11-30 00:00:00.000 0
10023       1095        Ronnie Deguara                                                                                                                                          R & K Deguara Pty Ltd                                                                                Contractor                                                                                           Heavy MV & Public Liability Insurance                                                                QBE Insurance                                                                                        2009-03-31 00:00:00.000 2010-03-31 00:00:00.000 0
10023       1097        Stevan Ostojic                                                                                                                                          Sturdy Bricklaying                                                                                   Contractor                                                                                           Workers Compensation                                                                                 GIO                                                                                                  2007-09-24 00:00:00.000 2008-09-24 00:00:00.000 0
10023       1095        Ronnie Deguara                                                                                                                                          R & K Deguara Pty Ltd                                                                                Contractor                                                                                           Workers Compensation                                                                                 QBE Workers Compensation                                                                             2009-06-30 00:00:00.000 2010-06-30 00:00:00.000 0
10023       1069        Albert Oraha                                                                                                                                            A.E.O. Concreting Pty Ltd                                                                            Concretor /Contractor                                                                                General Concretor                                                                                    Dept of Fair Trading                                                                                 NULL                    2011-01-05 00:00:00.000 0
10023       1069        Albert Oraha                                                                                                                                            A.E.O. Concreting Pty Ltd                                                                            Concretor /Contractor                                                                                General Concretor                                                                                    Dept of Fair Trading                                                                                 NULL                    2011-01-05 00:00:00.000 0
10023       1069        Albert Oraha                                                                                                                                            A.E.O. Concreting Pty Ltd                                                                            Concretor /Contractor                                                                                Construction Industry OHS Induction Certificate                                                      Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       1069        Albert Oraha                                                                                                                                            A.E.O. Concreting Pty Ltd                                                                            Concretor /Contractor                                                                                Public Liability                                                                                     CGU Insurance                                                                                        2009-06-21 00:00:00.000 2010-06-21 00:00:00.000 0
10023       1066        John Potter                                                                                                                                             Any Areas Asphalt Pty Ltd                                                                            Contractor/ Ashpalt                                                                                  Heavy Vehicle Driver Licence                                                                         Roads & Traffic Authority                                                                            2008-06-24 00:00:00.000 2011-06-24 00:00:00.000 0
10023       1066        John Potter                                                                                                                                             Any Areas Asphalt Pty Ltd                                                                            Contractor/ Ashpalt                                                                                  Construction Industry OHS Induction Certificate                                                      Workcover                                                                                            NULL                    2099-12-31 00:00:00.000 1
10023       2358        Atilla Farago                                                                                                                                           NULL                                                                                                 Operator/Truckdriver                                                                                 Cert of Competency - Licence LE LS                                                                   Workcover                                                                                            NULL                    NULL                    0
10023       2358        Atilla Farago                                                                                                                                           NULL                                                                                                 Operator/Truckdriver                                                                                 Drivers Licence MR, R                                                                                Roads & Traffic Authority                                                                            NULL                    2009-10-23 00:00:00.000 0
10023       2358        Atilla Farago                                                                                                                                           NULL                                                                                                 Operator/Truckdriver                                                                                 Construction Industry OHS Induction Certificate                                                      Workcover                                                                                            NULL                    NULL                    0
10023       1675        Lee Damiano                                                                                                                                             NULL                                                                                                 Concretor /Contractor                                                                                Construction Industry OHS Induction Certificate                                                      Workcover                                                                                            NULL                    NULL                    0
10023       1675        Lee Damiano                                                                                                                                             NULL                                                                                                 Concretor /Contractor                                                                                LS-Skid Steer                                                                                        Workcover                                                                                            NULL                    NULL                    0
10023       1056        Som Lam                                                                                                                                                 NULL                                                                                                 Welder                                                                                               Electrical Test & Tag                                                                                Comsec Global Training                                                                               NULL                    NULL                    0
10023       1093        Adam Argenta                                                                                                                                            Fine Line Concrete Pumping                                                                           Contractor                                                                                           Public Liability Insurance                                                                           GIO                                                                                                  2008-06-25 00:00:00.000 2009-06-25 00:00:00.000 0
10023       1093        Adam Argenta                                                                                                                                            Fine Line Concrete Pumping                                                                           Contractor                                                                                           Workers Compensation Insurance                                                                       Allianz                                                                                              2009-02-07 00:00:00.000 2010-02-07 00:00:00.000 0
10023       1056        Som Lam                                                                                                                                                 NULL                                                                                                 Welder                                                                                               Traffic Controller                                                                                   RTA                                                                                                  NULL                    2012-02-28 00:00:00.000 0
10023       1066        John Potter                                                                                                                                             Any Areas Asphalt Pty Ltd                                                                            Contractor/ Ashpalt                                                                                  Workers Compensation Insurance                                                                       GIO                                                                                                  2009-04-17 00:00:00.000 2010-04-17 00:00:00.000 0
10023       1096        Mathew Poulter                                                                                                                                          Reds Haulage Pty Ltd                                                                                 Contractor                                                                                           Workers Compensation Insurance                                                                       QBE Workers Compensation Ltd                                                                         2009-04-30 00:00:00.000 2010-04-30 00:00:00.000 0
10023       1096        Mathew Poulter                                                                                                                                          Reds Haulage Pty Ltd                                                                                 Contractor                                                                                           Heavy MV & Public Liability Insurance                                                                QBE Insurance                                                                                        2009-03-31 00:00:00.000 2010-03-31 00:00:00.000 0
10023       3383        Gregory Tarei                                                                                                                                                                                                                                                Labourer                                                                                             Drivers Licence                                                                                      RTA                                                                                                  2006-06-13 00:00:00.000 2011-06-13 00:00:00.000 0
10023       3383        Gregory Tarei                                                                                                                                                                                                                                                Labourer                                                                                             Construction Industry OHS Induction Certficate                                                       Workcover                                                                                            2009-08-12 00:00:00.000 2014-08-12 00:00:00.000 0
10023       3383        Gregory Tarei                                                                                                                                                                                                                                                Labourer                                                                                             National Cert. Comp - Licence SA DG RB RI RA LF                                                      Workcover                                                                                            2009-08-12 00:00:00.000 2014-08-12 00:00:00.000 0
10023       3383        Gregory Tarei                                                                                                                                                                                                                                                Labourer                                                                                             Senior First Aid                                                                                     DLIQ                                                                                                 2009-03-27 00:00:00.000 2099-12-31 00:00:00.000 1
10023       3946        Richard Boyle                                                                                                                                                                                                                                                General Hand                                                                                         Drivers Licence                                                                                      RTA                                                                                                  2009-01-27 00:00:00.000 2010-01-27 00:00:00.000 0
10023       3946        Richard Boyle                                                                                                                                                                                                                                                General Hand                                                                                         Construction Industry OHS Induction Certificate                                                      Workcover                                                                                            2008-04-10 00:00:00.000 2099-12-31 00:00:00.000 1
10023       3946        Richard Boyle                                                                                                                                                                                                                                                General Hand                                                                                         Elevating Work Platform Assoc                                                                        EWPAA                                                                                                2003-02-07 00:00:00.000 2099-12-31 00:00:00.000 1
10023       1065        Pat Carbone                                                                                                                                             Anewline Construction                                                                                Contractor                                                                                           NULL                                                                                                 NULL                                                                                                 NULL                    NULL                    NULL
10023       3150        Fares Amir                                                                                                                                              Ultimate Paving                                                                                      Pavior                                                                                               NULL                                                                                                 NULL                                                                                                 NULL                    NULL                    NULL
10023       1098        Joes Concrete Cutting Service Harris                                                                                                                    NULL                                                                                                 Contractor                                                                                           NULL                                                                                                 NULL                                                                                                 NULL                    NULL                    NULL
10023       1090        A1 Waterproofing (NSW) P/L TBA                                                                                                                          NULL                                                                                                 Contractor                                                                                           NULL                                                                                                 NULL                                                                                                 NULL                    NULL                    NULL
10023       3151        Salam ALKAFAJI                                                                                                                                          Ultimate Paving                                                                                      Pavior                                                                                               NULL                                                                                                 NULL                                                                                                 NULL                    NULL                    NULL

Answer : Create row based view from  several tables.

I will suggest you to use web parts to place your controls.
Otherwise it would been a cumbersome task to identify and store the location of each control in db.
Random Solutions  
 
programming4us programming4us