Hi,
I have a table that has the following fields:
Name
Rates
Tier
What I would like to do is display the table based on the name, rates, and tier type. For example I would like to display this:
Name Rates Tier
-----------------------
John Smith 100.00 Indiv
John Smith 210.00 2Party
John Smith 180.00 ParentChild
John Smith 320.00 Family
in a single line query like this
Name Tier1 Tier2 Tier3 Tier4
--------------------------------------
John Smith 100.00 210.00 180.00 320.00
I am sure this has been done before but I am not sure of the SQL code to do it. Can someone help me out?
Mark
I have a table that has the following fields:
Name
Rates
Tier
What I would like to do is display the table based on the name, rates, and tier type. For example I would like to display this:
Name Rates Tier
-----------------------
John Smith 100.00 Indiv
John Smith 210.00 2Party
John Smith 180.00 ParentChild
John Smith 320.00 Family
in a single line query like this
Name Tier1 Tier2 Tier3 Tier4
--------------------------------------
John Smith 100.00 210.00 180.00 320.00
I am sure this has been done before but I am not sure of the SQL code to do it. Can someone help me out?
Mark