M
marty
I have a table that looks like this:
Lon Lat Chan RSSI BSIC
82.1 40.1 333 -80 2
82.1 40.1 334 -96 43
83.2 40.1 333 -88 6
83.2 40.1 334 -72 43
84.4 40.1 333 -88 2
84.4 40.1 334 -64 50
84.4 40.2 333 -90 2
84.4 40.2 334 -67 50
I need a query that will take the above table and output it to this: The
group by would be on the Lon Lat fields
Lon Lat CH_333 BSIC_333 CH_334
BSIC_334
82.1 40.1 -80 2 -96
43
83.2 40.1 -88 6 -72
43
84.4 40.1 -88 2 -64
50
84.4 40.2 -90 2 -67
50
I already have a table with the fields mentioned above. To be technical I
have a table with 36 different channel and 36 bsic fields. Is this possible?
I'm totally stumped.
Lon Lat Chan RSSI BSIC
82.1 40.1 333 -80 2
82.1 40.1 334 -96 43
83.2 40.1 333 -88 6
83.2 40.1 334 -72 43
84.4 40.1 333 -88 2
84.4 40.1 334 -64 50
84.4 40.2 333 -90 2
84.4 40.2 334 -67 50
I need a query that will take the above table and output it to this: The
group by would be on the Lon Lat fields
Lon Lat CH_333 BSIC_333 CH_334
BSIC_334
82.1 40.1 -80 2 -96
43
83.2 40.1 -88 6 -72
43
84.4 40.1 -88 2 -64
50
84.4 40.2 -90 2 -67
50
I already have a table with the fields mentioned above. To be technical I
have a table with 36 different channel and 36 bsic fields. Is this possible?
I'm totally stumped.