Advertisement
chrissharp123

Untitled

Mar 7th, 2025
577
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- goal: create a list of update statements to correct a batch change error
  2. -- using data from the auditor.student_card_school_history table to repopulate
  3. -- the correct values
  4. select 'update student_card.school set addr_city = ''' ||  -- || = "concatenate text", ''' = a way of escaping single quotes so the result is single quoted
  5.         coalesce(x.addr_city, 'null') ||  -- COALESCE is a function to address possibly NULL values by supplying a value - necessary because otherwise you get blank rows
  6.         ''', addr_state = ''' ||
  7.         coalesce(x.addr_state, 'null') ||
  8.         ''', addr_post_code = ''' ||
  9.         coalesce(x.addr_post_code, 'null') ||
  10.         ''' where id = ' || x.id || ';'
  11.         -- resulting row should look like:
  12.         -- update student_card.school set addr_city = 'Bloomingdale', addr_state = 'GA', addr_post_code = '31302-9278' where id = 4;
  13. from ( -- this starts out as just a normal subquery, aliased to "x"
  14.     select  audit_id,
  15.             id,
  16.             addr_city,
  17.             addr_state,
  18.             addr_post_code,
  19.             row_number() over (partition by id order by audit_id desc) -- this is called a "window function" - it basically creates an on-the-fly "table" you can query from
  20.             -- partition by - similar to "group by" in an aggregate function like COUNT() - you have to tell the window function what to consider a "unit" of data, or effectively, a "row"
  21.             -- row_number() literally just adds a number to the row so you can identify the first row of the set we create in the window function
  22.             from auditor.student_card_school_history -- snapshots of the data as it existed before each change
  23.             where state_id in (173, 199, 299, 1052, 2050, 3050, 3052, 4052, 5050)
  24.             and district_id <> 88 -- not the district that I *meant* to change
  25.     ) as x -- the alias
  26. where row_number = 1; -- since we sort by audit_id descending, "row number 1" will be the *newest* row that matches the school ID
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement