Academic standards are stored in the standards schema. More specifically you can find individual standard information in the standards.standards table.

Examples

-- Get a list of all standards that have been administered
-- at the district.
SELECT
  standards.custom_code,
  standards.description
FROM standards.standards
WHERE standards.standard_id IN (
    SELECT DISTINCT standard_id
    FROM dna_assessments.agg_student_responses_standard
  )
LIMIT 100

Want some more examples? Send me some suggestions of the data you would like to see zach@illuminateed.com