Replies: 1 comment 1 reply
-
For some reason the It's not exactly the same thing, but you might try using the SELECT
plant_id_eia,
plant_name_eia,
report_date,
balancing_authority_code_eia,
iso_rto_code,
nerc_region
FROM out_eia__yearly_plants
USING SAMPLE 20
ORDER BY report_date;
Looking just at the records where there is a value for
|
Beta Was this translation helpful? Give feedback.
-
Hello,
I'm trying to associate plant IDs in CEMS dataset from year 2017 with their respective ISO/RTO and NERC codes by merging it with the information from
out_eia__yearly_plants
table. However, when I set the report date to 2017-01-01, the resulting query contains no information of iso_rto_code but 10,127 rows have nerc_region information (see screenshot attached).Is there another table that contains more complete ISO/RTO, NERC region names for plant IDs in CEMS data?
Beta Was this translation helpful? Give feedback.
All reactions