roam/daily/2022-05-25.org
2022-05-27 17:35:02 -04:00

37 lines
1.1 KiB
Org Mode

:PROPERTIES:
:ID: eaa8559b-5e23-4922-98c3-4574b63c40f9
:END:
#+title: 2022-05-25
* [[id:d06d3ab4-c2d0-47c3-aae1-4395567fc3d2][Normalizing tags]] in production
:PROPERTIES:
:header-args:sql: :engine postgresql :cmdline "-U postgres postgres" :dir /docker:postgres: :exports both :cache yes :eval no-export
:END:
#+CAPTION: Find the next set of least affected accounts
#+begin_src sql
SELECT COUNT(*)
FROM accounts
WHERE NOT normalized AND total <= 500
#+end_src
#+RESULTS[4e2afc6030287036e6f8e35197d2286a91d155b1]:
| count |
|-------|
| 586 |
#+CAPTION: Find the next set of least affected accounts
#+NAME: 06-less-than-equal-to-five-hundred
#+begin_src sql :results silent
SELECT account_id
FROM accounts
WHERE NOT normalized AND total <= 500
#+end_src
#+begin_src emacs-lisp :var accounts=06-less-than-equal-to-five-hundred :results file :eval no-export
(let ((filename "~/git/normalize_account_tags/production/06-less-than-equal-to-five-hundred"))
(with-temp-file filename
(insert (s-join "\n" (-map #'car accounts))))
filename)
#+end_src
#+RESULTS:
[[file:~/git/normalize_account_tags/production/06-less-than-equal-to-five-hundred]]