i have 3 tables:
members(nic,name)
awards(nic,aw_name)
championships(nic,ch_name)
a person can have multiple awards or championships. for example Richard has 2 awards and 3 championships, and Steve does not have any award or championship.
now i'd like to list of persons with awards and championships. for example:
|    nic   |    name    |   aw_name   |      ch_name      |
|----------|------------|-------------|-------------------|
| 1        | Richard    | award 1     | championship 1    |
| 1        | Richard    | award 2     | championship 2    |
| 1        | Richard    |             | championship 3    |
| 2        | Steve      |             |                   |
Can anyone help me out? Thanks!