I am working on a project for our accounting department. I have a database (MySQL) table with ledger codes. Our company has a few different office locations, and each of these codes can apply to one or more office location. Each office location can have one or more ledger codes that apply. So I have a many-to-many relationship with a bridge table holding the code_id
and the location_id
. My SQL is as follows:
SELECT gl.`code_id`, gl.`account_code`, gl.`account_type`, gl.`account_desc`, glloc.`location_id`
FROM `gl_codes` as gl
LEFT JOIN `gl_codes_locations` as glloc
ON gl.`code_id` = glloc.`code_id`
ORDER BY gl.`code_id`, glloc.`location_id`
This results in a table with a separate row for each code_id
/location_id
pair. I want to display this in a table using cfoutput
. I want only one row for each code_id
, but I will use a column in each row to mark whether that code applies to a given location_id
, like so:
| CodeAccount | CodeType | CodeDescription | Code Location |
| | | | 1 | 2 | 3 | 4 |
|SomeAcct | SomeCode | Some Desc | X | | X | |
I know that I cannot nest
cfoutput
tags with multiple query
attributes. I've tried some grouping, but I can't seem to get it right. Please help!
This should get you pretty close. First we need a list of available IDs, so we know how many Location sub-columns we need.
Then, inside the table we can build the header and body using this information: